diff options
author | David Robillard <d@drobilla.net> | 2012-02-01 03:19:44 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-02-01 03:19:44 +0000 |
commit | a53c719dbc146474fc2659442cc2fdd7ff714f15 (patch) | |
tree | 364cd84d5dedcedb3beea4ef411ede703bda9be8 /wscript | |
parent | 0b7229f7d596c7ec6e41054ccf2be6d2bdbf2178 (diff) | |
download | zix-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
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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") |