diff options
author | Eevee (Lexy Munroe) <eevee.git@veekun.com> | 2016-08-24 15:43:15 -0700 |
---|---|---|
committer | Eevee (Lexy Munroe) <eevee.git@veekun.com> | 2016-08-24 15:43:15 -0700 |
commit | a64657988a50522885618998e7f14168c299a19b (patch) | |
tree | 9240aab0fba75befe75d6059d62bea8a3e0fbd4e /pokemontools/wram.py | |
parent | 0e1798937a4bf723813574281d0dc12c471c9199 (diff) |
Fix most Python 3 compat issues with futurize --stage1
Diffstat (limited to 'pokemontools/wram.py')
-rw-r--r-- | pokemontools/wram.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pokemontools/wram.py b/pokemontools/wram.py index 8270566..a372952 100644 --- a/pokemontools/wram.py +++ b/pokemontools/wram.py @@ -159,7 +159,7 @@ class BSSReader: # rgbasm allows labels without :, but prefer convention label = line[:line.find(':')] if '\\' in label: - raise Exception, line + ' ' + label + raise Exception(line + ' ' + label) if ';' not in label: section_label = { 'label': label, |