Revert "fixed request missing current prefix causing wrongly handled exceptions."

This reverts commit 8c28be1041.
Removed NEWINSTALL by error.
This commit is contained in:
Michele Comitini
2013-03-09 21:21:26 +01:00
parent 8c28be1041
commit 8cd6928da3
2 changed files with 2 additions and 1 deletions

1
NEWINSTALL Normal file
View File

@@ -0,0 +1 @@

View File

@@ -4454,7 +4454,7 @@ class Service(object):
except BaseException:
etype, eval, etb = sys.exc_info()
code = -32099
data = '%s: %s\n' % (etype.__name__, eval) + str(current.request.is_local and traceback.format_tb(etb))
data = '%s: %s\n' % (etype.__name__, eval) + str(request.is_local and traceback.format_tb(etb))
return return_error(id, code, data=data)
except:
etype, eval, etb = sys.exc_info()