support for encoding and decoding variable length addresses #450

Merged
Atheros1 merged 7 commits from master into master 2013-08-26 21:29:30 +02:00
Showing only changes of commit 0ca9ba9dc1 - Show all commits

View File

@ -875,8 +875,7 @@ class MySimpleXMLRPCRequestHandler(SimpleXMLRPCRequestHandler):
except APIError as e: except APIError as e:
return str(e) return str(e)
except Exception as e: except Exception as e:
logger.critical(e) logger.exception(e)
logger.critical(sys.exc_info()[0])
return "API Error 0021: Unexpected API Failure - %s" % str(e) return "API Error 0021: Unexpected API Failure - %s" % str(e)
# This thread, of which there is only one, runs the API. # This thread, of which there is only one, runs the API.