Skip to content
This repository has been archived by the owner on Apr 7, 2022. It is now read-only.

Commit

Permalink
Fix syntax error in python 3
Browse files Browse the repository at this point in the history
  • Loading branch information
tiagocoutinho authored and Jose Tiago Coutinho Macara committed Mar 1, 2016
1 parent e4a6f05 commit 873d968
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/boost/python/tango_gevent.py
Expand Up @@ -53,7 +53,7 @@ def get_with_exception(g, block=True, timeout=None):
result = g._get(block, timeout)
if isinstance(result, ExceptionWrapper):
# raise the exception using the caller context
raise result.error_string, None, result.tb
raise result.error_string(None, result.tb)
else:
return result

Expand Down

0 comments on commit 873d968

Please sign in to comment.