Skip to content
Snippets Groups Projects
Unverified Commit a78a8e2c authored by mdjurfeldt's avatar mdjurfeldt Committed by GitHub
Browse files

Merge pull request #53 from mhoff/master

Fix python3 syntax error
parents 6baeadd0 7748f39e
No related branches found
No related tags found
No related merge requests found
...@@ -60,8 +60,7 @@ def postponeSetup (): ...@@ -60,8 +60,7 @@ def postponeSetup ():
the first port. Must be called before creation of MUSIC::Setup. the first port. Must be called before creation of MUSIC::Setup.
""" """
if not thisApp: if not thisApp:
raise RuntimeError, \ raise RuntimeError('must define Application before calling postponeSetup ()')
'must define Application before calling postponeSetup ()'
os.environ[CONFIGVARNAME] = 'POSTPONE:' + str (thisApp.number) os.environ[CONFIGVARNAME] = 'POSTPONE:' + str (thisApp.number)
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment