diff options
author | Eugeni Dodonov <eugeni@mandriva.org> | 2010-02-23 01:02:12 +0000 |
---|---|---|
committer | Eugeni Dodonov <eugeni@mandriva.org> | 2010-02-23 01:02:12 +0000 |
commit | 4271f69b19c208dde9fa218beb1a237f428fe2fc (patch) | |
tree | f6f78115f84c729a9bbdb12d0d9792effcad9aca /src | |
parent | 229f835dbf453b4ac0b209332b976126b0247ce0 (diff) | |
download | msec-4271f69b19c208dde9fa218beb1a237f428fe2fc.tar msec-4271f69b19c208dde9fa218beb1a237f428fe2fc.tar.gz msec-4271f69b19c208dde9fa218beb1a237f428fe2fc.tar.bz2 msec-4271f69b19c208dde9fa218beb1a237f428fe2fc.tar.xz msec-4271f69b19c208dde9fa218beb1a237f428fe2fc.zip |
prevent variable duplication when saving
Diffstat (limited to 'src')
-rw-r--r-- | src/msec/config.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/msec/config.py b/src/msec/config.py index 29ba705..b5b1ace 100644 --- a/src/msec/config.py +++ b/src/msec/config.py @@ -287,7 +287,6 @@ class MsecConfig: pass else: value = '"%s"' % value - print >>fd, "%s=%s" % (option, value) print >>fd, "%s=%s" % (option, value) return True # }}} |