From e1d74b1544da8d338e66e9474ade057068f48276 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 28 Oct 2010 21:03:00 +0000 Subject: Python 2.5 compatibility. --- core.lv2/lv2config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core.lv2/lv2config') 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: -- cgit v1.2.1