From a53c719dbc146474fc2659442cc2fdd7ff714f15 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 1 Feb 2012 03:19:44 +0000 Subject: Python 2.4 portability. git-svn-id: http://svn.drobilla.net/zix/trunk@64 df6676b4-ccc9-40e5-b5d6-7c4628a128e3 --- wscript | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'wscript') 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") -- cgit v1.2.1