1
0

remove forgotten debugging statement

This commit is contained in:
ThomasV
2015-06-03 10:03:55 +02:00
parent ca62df89d4
commit 0ddd94b5b3

View File

@@ -119,7 +119,6 @@ class Commands:
@command('') @command('')
def setconfig(self, key, value): def setconfig(self, key, value):
"""Set a configuration variable. 'value' may be a string or a Python expression.""" """Set a configuration variable. 'value' may be a string or a Python expression."""
value = ast.literal_eval(value)
try: try:
value = ast.literal_eval(value) value = ast.literal_eval(value)
except: except: