diff options
author | David Robillard <d@drobilla.net> | 2011-05-25 22:51:01 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-05-25 22:51:01 +0000 |
commit | e4da941faa92adf0c4dc3ae03d6598db7921f56b (patch) | |
tree | 64403422620560bd45b50414f78153804d85d189 /wscript | |
parent | 5e10b8e75964c526605fdf04d6a513c696a47931 (diff) | |
download | sord-e4da941faa92adf0c4dc3ae03d6598db7921f56b.tar.gz sord-e4da941faa92adf0c4dc3ae03d6598db7921f56b.tar.bz2 sord-e4da941faa92adf0c4dc3ae03d6598db7921f56b.zip |
Only use most basic (portable) Python exception syntax
git-svn-id: http://svn.drobilla.net/sord/trunk@145 3d64ff67-21c5-427c-a301-fe4f08042e5a
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -196,7 +196,7 @@ def fix_docs(ctx): os.chdir(build_dir(ctx, 'doc/man/man3')) os.system("sed -i 's/SORD_API //' sord.3") os.chdir(top) - except Exception: + except: Logs.error("Failed to fix up %s documentation" % APPNAME) def upload_docs(ctx): |