summaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-04-19 20:16:41 +0000
committerDavid Robillard <d@drobilla.net>2011-04-19 20:16:41 +0000
commit7bd7c79cd8a5d98c39d815f773c5114fbd6727cf (patch)
treef349765d64d442873d1c56209a4e205dbb1cc9ce /wscript
parent06da3fdbaefffe323c83dc515f280fe577ae15dc (diff)
downloadlilv-7bd7c79cd8a5d98c39d815f773c5114fbd6727cf.tar.gz
lilv-7bd7c79cd8a5d98c39d815f773c5114fbd6727cf.tar.bz2
lilv-7bd7c79cd8a5d98c39d815f773c5114fbd6727cf.zip
Remove use of new (2.6) python exception syntax.
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@3168 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'wscript')
-rw-r--r--wscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/wscript b/wscript
index e3678c2..0f604f1 100644
--- a/wscript
+++ b/wscript
@@ -300,7 +300,7 @@ def fix_docs(ctx):
os.remove('index.html')
os.symlink('group__slv2.html',
'index.html')
- except Exception as e:
+ except Exception, e:
Logs.error("Failed to fix up Doxygen documentation (%s)\n" % e)
def upload_docs(ctx):