diff options
author | David Robillard <d@drobilla.net> | 2011-05-25 18:50:48 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-05-25 18:50:48 +0000 |
commit | a0815d37418e18d3f0a36b3388895b5f6fe7b431 (patch) | |
tree | d296bf4106109aace4b2c8feebcfee9c0a7c2067 /wscript | |
parent | cc32af0fbed6a54cef899c8bea3659734c67d4e4 (diff) | |
download | serd-a0815d37418e18d3f0a36b3388895b5f6fe7b431.tar.gz serd-a0815d37418e18d3f0a36b3388895b5f6fe7b431.tar.bz2 serd-a0815d37418e18d3f0a36b3388895b5f6fe7b431.zip |
Python portability (argh...)
git-svn-id: http://svn.drobilla.net/serd/trunk@200 490d8e77-9747-427b-9fa3-0b8f29cee8a0
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -171,8 +171,8 @@ def fix_docs(ctx): os.chdir(top) os.chdir('build/doc/man/man3') os.system("sed -i 's/SERD_API //' serd.3") - except Exception, e: - Logs.error("Failed to fix up Doxygen documentation (%s)\n" % e) + except: + Logs.error("Failed to fix up documentation") def upload_docs(ctx): os.system("rsync -ravz --delete -e ssh build/doc/html/ drobilla@drobilla.net:~/drobilla.net/docs/serd/") |