summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-02-01 03:19:44 +0000
committerDavid Robillard <d@drobilla.net>2012-02-01 03:19:44 +0000
commita53c719dbc146474fc2659442cc2fdd7ff714f15 (patch)
tree364cd84d5dedcedb3beea4ef411ede703bda9be8
parent0b7229f7d596c7ec6e41054ccf2be6d2bdbf2178 (diff)
downloadzix-a53c719dbc146474fc2659442cc2fdd7ff714f15.tar.gz
zix-a53c719dbc146474fc2659442cc2fdd7ff714f15.tar.bz2
zix-a53c719dbc146474fc2659442cc2fdd7ff714f15.zip
Python 2.4 portability.
git-svn-id: http://svn.drobilla.net/zix/trunk@64 df6676b4-ccc9-40e5-b5d6-7c4628a128e3
-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")