aboutsummaryrefslogtreecommitdiffstats
path: root/core.lv2/lv2config
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2010-10-28 21:03:00 +0000
committerDavid Robillard <d@drobilla.net>2010-10-28 21:03:00 +0000
commite1d74b1544da8d338e66e9474ade057068f48276 (patch)
tree36dbdf9e42c5a7c9b598115ad2f24513404eb975 /core.lv2/lv2config
parent274c9213fff96bac087649555c6cc1c932695128 (diff)
downloadlv2-e1d74b1544da8d338e66e9474ade057068f48276.tar.xz
Python 2.5 compatibility.
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: