Browse Source

eval arg passed to setconfig, to avoid storing boolean as string

283
ThomasV 11 years ago
parent
commit
271dfeb245
  1. 5
      electrum

5
electrum

@ -21,6 +21,7 @@ import json
import optparse
import os
import re
import ast
import sys
import time
import traceback
@ -454,6 +455,10 @@ if __name__ == '__main__':
elif cmd.name == 'setconfig':
key, value = args[1:3]
try:
value = ast.literal_eval(value)
except:
pass
config.set_key(key, value, True)
print_msg(True)

Loading…
Cancel
Save