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 | 5e4c46142b8b42d7a842654c399cfca628810932 (patch) | |
tree | 99116dd6f5235e3be340da42848dbc43b4c40d76 | |
parent | b7c887153c1fba3c2f79b85fa51ead17e236473c (diff) | |
download | suil-5e4c46142b8b42d7a842654c399cfca628810932.tar.gz suil-5e4c46142b8b42d7a842654c399cfca628810932.tar.bz2 suil-5e4c46142b8b42d7a842654c399cfca628810932.zip |
Python portability (argh...)
git-svn-id: http://svn.drobilla.net/lad/trunk/suil@3331 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r-- | wscript | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -126,8 +126,8 @@ def fix_docs(ctx): os.chdir(top) os.chdir('build/doc/man/man3') os.system("sed -i 's/SUIL_API //' suil.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/suil") |