diff options
author | David Robillard <d@drobilla.net> | 2011-05-25 18:50:53 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-05-25 18:50:53 +0000 |
commit | 510b72f60499ae9f31ad0e6b68c04f838e460097 (patch) | |
tree | 4c535b3d9062e8696e27558d1dfe356327a66780 /wscript | |
parent | 5642b221e72018fa8c44098ecc6427e8722cb167 (diff) | |
download | sord-510b72f60499ae9f31ad0e6b68c04f838e460097.tar.gz sord-510b72f60499ae9f31ad0e6b68c04f838e460097.tar.bz2 sord-510b72f60499ae9f31ad0e6b68c04f838e460097.zip |
Python portability (argh...)
git-svn-id: http://svn.drobilla.net/sord/trunk@141 3d64ff67-21c5-427c-a301-fe4f08042e5a
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -184,8 +184,8 @@ def fix_docs(ctx): os.chdir(top) os.chdir('build/doc/man/man3') os.system("sed -i 's/SORD_API //' sord.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 -ravz --delete -e ssh build/doc/html/ drobilla@drobilla.net:~/drobilla.net/docs/sord/") |