diff options
-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: |