Open foobarlab opened 11 years ago
See: https://github.com/foobarlab/UpStage/blob/master/server/src/upstage/server.py#L249
log.msg("Unexpected error: %s : %s" %(sys.exc_info()[0], sys.exc_value))
The last parameter sys.exc_value is an error (does not exist). Instead it should be set according to http://docs.python.org/2/library/sys.html#sys.exc_info (pay attention to the warning box!).
sys.exc_value
See: https://github.com/foobarlab/UpStage/blob/master/server/src/upstage/server.py#L249
The last parameter
sys.exc_value
is an error (does not exist). Instead it should be set according to http://docs.python.org/2/library/sys.html#sys.exc_info (pay attention to the warning box!).