From f8f346c75ce601444a0baf5286257b156a029eb7 Mon Sep 17 00:00:00 2001 From: Martinez Date: Mon, 25 Apr 2016 10:49:23 +0200 Subject: [PATCH] fix .over-video (context file) parser --- aux.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aux.py b/aux.py index e2a0133..9cfcc26 100644 --- a/aux.py +++ b/aux.py @@ -63,7 +63,7 @@ def update_cfg_context(main, ignore=[]): continue try: - name, value = line.split("=") + name, value = line.split("=", 1) except ValueError: main.print(".over-video §rsyntax error§/ on line §B{:d}§/: §y{:s}§/".format(i, line), prefix.fail) main.print("fix the error or set §B--no-§gcontext§/")