diff --git a/uncompyle6/scanners/scanner37.py b/uncompyle6/scanners/scanner37.py index ecf04c3e..835bc3a9 100644 --- a/uncompyle6/scanners/scanner37.py +++ b/uncompyle6/scanners/scanner37.py @@ -1,4 +1,4 @@ -# Copyright (c) 2016-2018 by Rocky Bernstein +# Copyright (c) 2016-2019 by Rocky Bernstein # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -27,7 +27,7 @@ from __future__ import print_function from uncompyle6.scanners.scanner3 import Scanner3 # bytecode verification, verify(), uses JUMP_OPs from here -from xdis.opcodes import opcode_36 as opc +from xdis.opcodes import opcode_37 as opc JUMP_OPs = opc.JUMP_OPS class Scanner37(Scanner3):