summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--wscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/wscript b/wscript
index f124095..b31787a 100644
--- a/wscript
+++ b/wscript
@@ -203,8 +203,8 @@ def fix_docs(ctx):
os.symlink('group__zix.html',
'index.html')
os.chdir(top)
- except Exception as e:
- Logs.error("Failed to fix up %s documentation (%s)" % (APPNAME, e))
+ except Exception:
+ Logs.error("Failed to fix up %s documentation" % APPNAME)
def upload_docs(ctx):
os.system("rsync -avz --delete -e ssh build/doc/html/* drobilla@drobilla.net:~/drobilla.net/docs/zix")