diff options
author | David Robillard <d@drobilla.net> | 2010-10-28 21:03:00 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2010-10-28 21:03:00 +0000 |
commit | e1d74b1544da8d338e66e9474ade057068f48276 (patch) | |
tree | 36dbdf9e42c5a7c9b598115ad2f24513404eb975 /core.lv2 | |
parent | 274c9213fff96bac087649555c6cc1c932695128 (diff) | |
download | lv2-e1d74b1544da8d338e66e9474ade057068f48276.tar.xz |
Python 2.5 compatibility.
Diffstat (limited to 'core.lv2')
-rwxr-xr-x | core.lv2/lv2config | 2 |
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: |