diff options
Diffstat (limited to 'scripts/FileGenerator.py')
-rw-r--r-- | scripts/FileGenerator.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/FileGenerator.py b/scripts/FileGenerator.py index eb13e0fd5..b4fe02653 100644 --- a/scripts/FileGenerator.py +++ b/scripts/FileGenerator.py @@ -150,7 +150,7 @@ def UpdateLineInPlistFile(path, key, value): elif ls.startswith("<string>"): if keyCurrent == key: start, tag, rest = l.partition("<string>") - val, etag, end = rest.partition("</string>") + _val, etag, end = rest.partition("</string>") l = start + tag + value + etag + end lines.append(l) contents = "".join(lines) |