summaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-05-25 22:51:01 +0000
committerDavid Robillard <d@drobilla.net>2011-05-25 22:51:01 +0000
commite4da941faa92adf0c4dc3ae03d6598db7921f56b (patch)
tree64403422620560bd45b50414f78153804d85d189 /wscript
parent5e10b8e75964c526605fdf04d6a513c696a47931 (diff)
downloadsord-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--wscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/wscript b/wscript
index 2501ffb..06ca0a5 100644
--- a/wscript
+++ b/wscript
@@ -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):