aboutsummaryrefslogtreecommitdiffstats
path: root/core.lv2/lv2config
diff options
context:
space:
mode:
Diffstat (limited to 'core.lv2/lv2config')
-rwxr-xr-xcore.lv2/lv2config2
1 files changed, 1 insertions, 1 deletions
diff --git a/core.lv2/lv2config b/core.lv2/lv2config
index 6b22fd6..93eb0a6 100755
--- a/core.lv2/lv2config
+++ b/core.lv2/lv2config
@@ -102,7 +102,7 @@ def __mkdir_p(path):
"Equivalent of UNIX mkdir -p"
try:
os.makedirs(path)
- except OSError as e:
+ except OSError, e:
if e.errno == errno.EEXIST:
pass
else: