summaryrefslogtreecommitdiff
path: root/pokemontools/wram.py
diff options
context:
space:
mode:
authoryenatch <yenatch@gmail.com>2017-02-13 18:09:31 -0500
committerGitHub <noreply@github.com>2017-02-13 18:09:31 -0500
commit979c98a7c0f67ad6b9685b2d532c66a1f76ffb22 (patch)
treec67cc7b8500aac4e400d4e8bfdbef57a57b63eb1 /pokemontools/wram.py
parent74c620d01ad59bfb09cf4111ace549b925fcb9ab (diff)
parent766dea11bd63dee939db2b47198410e6c6e0fc7e (diff)
Merge pull request #103 from eevee/py3
Python 3 compatibility, sort of, maybe
Diffstat (limited to 'pokemontools/wram.py')
-rw-r--r--pokemontools/wram.py2
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,