handling bugs in exceptions.py

This commit is contained in:
Daniel Tesfai 2019-09-03 17:07:43 -04:00
parent 3fb364b3e4
commit 6f36de4a08
1 changed files with 2 additions and 1 deletions

View File

@ -408,7 +408,8 @@ class VoipException(Exception):
'used_speed_dial': 'You have an entry with this Speed Dial',
'used_username': 'You already have a subaccount using this Username.',
'weak_password': 'This Password is too weak or too common'}
return "API Call failed as: {}".format(err_code_map[self.err_code])
err_desc = err_code_map[self.err_code] or self.err_code
return "API Call failed as: {}".format(err_desc)