aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEugeni Dodonov <eugeni@mandriva.org>2010-02-23 01:02:12 +0000
committerEugeni Dodonov <eugeni@mandriva.org>2010-02-23 01:02:12 +0000
commit4271f69b19c208dde9fa218beb1a237f428fe2fc (patch)
treef6f78115f84c729a9bbdb12d0d9792effcad9aca /src
parent229f835dbf453b4ac0b209332b976126b0247ce0 (diff)
downloadmsec-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.py1
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
# }}}