Browse Source

fix: set_config

283
ThomasV 10 years ago
parent
commit
ca62df89d4
  1. 5
      lib/commands.py
  2. 1
      lib/paymentrequest.py

5
lib/commands.py

@ -118,11 +118,12 @@ class Commands:
@command('') @command('')
def setconfig(self, key, value): def setconfig(self, key, value):
"""Set a configuration variable. 'value' uses Python syntax""" """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:
return False pass
self.config.set_key(key, value) self.config.set_key(key, value)
return True return True

1
lib/paymentrequest.py

@ -103,6 +103,7 @@ class PaymentRequest:
self.payment_url = self.details.payment_url self.payment_url = self.details.payment_url
def verify(self): def verify(self):
""" verify chain of certificates. The last certificate is the CA"""
if not ca_list: if not ca_list:
self.error = "Trusted certificate authorities list not found" self.error = "Trusted certificate authorities list not found"
return False return False

Loading…
Cancel
Save