aboutsummaryrefslogtreecommitdiffstats
path: root/configure.py
diff options
context:
space:
mode:
authorlloyd <[email protected]>2009-11-19 17:24:59 +0000
committerlloyd <[email protected]>2009-11-19 17:24:59 +0000
commitf3d64d76c0c8161973a83152d730c8123b20277f (patch)
treef0cb8634e5b7c72027c7da79caba06d5f3a67b42 /configure.py
parent3ab96f66124b18dce49c83eba79ec2790902d89e (diff)
Also treat + as a word char in shlex
Diffstat (limited to 'configure.py')
-rwxr-xr-xconfigure.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.py b/configure.py
index aa1f43948..3e95546a5 100755
--- a/configure.py
+++ b/configure.py
@@ -312,7 +312,7 @@ def lex_me_harder(infofile, to_obj, allowed_groups, name_val_pairs):
to_obj.basename = basename.replace('.txt', '')
lexer = shlex.shlex(open(infofile), infofile, posix=True)
- lexer.wordchars += '|:.<>/,-!' # handle various funky chars in info.txt
+ lexer.wordchars += '|:.<>/,-!+' # handle various funky chars in info.txt
for group in allowed_groups:
to_obj.__dict__[group] = []