diff options
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, |