Register try as an alias for try_

This commit is contained in:
Benjamin Schubert 2017-06-20 14:14:48 +02:00
parent b46964725c
commit 85ee506445
No known key found for this signature in database
GPG Key ID: D7B5B1D4A5288A7B

View File

@ -25,7 +25,8 @@ __proxyenabled__ = ['*']
# Don't shadow built-in's.
__func_alias__ = {
'true_': 'true',
'false_': 'false'
'false_': 'false',
'try_': 'try',
}
log = logging.getLogger(__name__)