diff options
author | David Robillard <d@drobilla.net> | 2011-05-25 18:50:33 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-05-25 18:50:33 +0000 |
commit | 090edad550c01c389d6776c713a2bf11618e474d (patch) | |
tree | 6a073d3ac5e5e4c14ffe0f206505b6d24fa1a3f9 | |
parent | 88423f02a2edbbd5c6a4dc07e8d399a6abe3f8ed (diff) | |
download | lilv-090edad550c01c389d6776c713a2bf11618e474d.tar.gz lilv-090edad550c01c389d6776c713a2bf11618e474d.tar.bz2 lilv-090edad550c01c389d6776c713a2bf11618e474d.zip |
Python portability (argh...)
git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@3331 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r-- | wscript | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -293,8 +293,8 @@ def fix_docs(ctx): os.chdir(top) os.chdir('build/doc/man/man3') os.system("sed -i 's/LILV_API //' lilv.3") - except Exception, e: - Logs.error("Failed to fix up Doxygen documentation (%s)\n" % e) + except: + Logs.error("Failed to fix up documentation\n") def upload_docs(ctx): os.system("rsync -avz --delete -e ssh build/doc/html/* drobilla@drobilla.net:~/drobilla.net/docs/lilv") |