From 7748f39e0df50c2a04f146ea3b3e23be3da4df97 Mon Sep 17 00:00:00 2001
From: Michael Hoff <mail@michael-hoff.net>
Date: Wed, 7 Feb 2018 14:55:22 +0100
Subject: [PATCH] Fix python3 syntax error

---
 music-config/config.py | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/music-config/config.py b/music-config/config.py
index e7a3b81..e749653 100644
--- a/music-config/config.py
+++ b/music-config/config.py
@@ -60,8 +60,7 @@ def postponeSetup ():
     the first port.  Must be called before creation of MUSIC::Setup.
     """
     if not thisApp:
-        raise RuntimeError, \
-              'must define Application before calling postponeSetup ()'
+        raise RuntimeError('must define Application before calling postponeSetup ()')
     os.environ[CONFIGVARNAME] = 'POSTPONE:' + str (thisApp.number)
 
 
-- 
GitLab