diff options
author | David Robillard <d@drobilla.net> | 2011-04-19 20:16:41 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-04-19 20:16:41 +0000 |
commit | 7bd7c79cd8a5d98c39d815f773c5114fbd6727cf (patch) | |
tree | f349765d64d442873d1c56209a4e205dbb1cc9ce | |
parent | 06da3fdbaefffe323c83dc515f280fe577ae15dc (diff) | |
download | lilv-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
-rw-r--r-- | wscript | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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): |