File "/home/other/Soyes/TWRP/build/vendor/omni/build/tools/roomservice.py", line 109
except IOError, ES.ParseError:
^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: multiple exception types must be parenthesized
File "/home/other/Soyes/TWRP/build/vendor/omni/build/tools/roomservice.py", line 166
except IOError, ES.ParseError:
^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: multiple exception types must be parenthesized
Easily fixed by putting () around the exceptions on line 109 and 166.
File "/home/other/Soyes/TWRP/build/vendor/omni/build/tools/roomservice.py", line 109
except IOError, ES.ParseError:
^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: multiple exception types must be parenthesized
File "/home/other/Soyes/TWRP/build/vendor/omni/build/tools/roomservice.py", line 166
except IOError, ES.ParseError:
^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: multiple exception types must be parenthesized
Easily fixed by putting () around the exceptions on line 109 and 166.