Fix wrong node slot in 3.6 for except_handler

This commit is contained in:
rocky
2019-05-01 14:23:00 -04:00
parent ce7015f382
commit 32bc017e2e

View File

@@ -49,7 +49,7 @@ def customize_for_version36(self, version):
(0, 'expr')),
'fstring_multi': ( "f'''%c'''", 0),
'func_args36': ( "%c(**", 0),
'try_except36': ( '%|try:\n%+%c%-%c\n\n', 1, 2 ),
'try_except36': ( '%|try:\n%+%c%-%c\n\n', 1, -2 ),
'except_return': ( '%|except:\n%+%c%-', 3 ),
'unpack_list': ( '*%c', (0, 'list') ),
'tryfinally_return_stmt':