From bd01440f32aa617eb94691f1368afb64d92f3225 Mon Sep 17 00:00:00 2001 From: bfox Date: Thu, 21 Jun 2001 18:38:33 +0000 Subject: fixed parsing bug --- readConfigFile.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'readConfigFile.py') diff --git a/readConfigFile.py b/readConfigFile.py index 5d84573c4..b76b514a1 100755 --- a/readConfigFile.py +++ b/readConfigFile.py @@ -1,7 +1,6 @@ #!/usr/bin/python import string - def getConfigFile(): import string @@ -18,6 +17,6 @@ def getConfigFile(): pass else: tokens = string.split(line) - dict[tokens[0]] = tokens[1] - + str = string.join(tokens[1:]) + dict[tokens[0]] = str return dict -- cgit