diff options
author | David Robillard <d@drobilla.net> | 2011-04-20 14:22:48 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-04-20 14:22:48 +0000 |
commit | a84205b935feb5d402bc9fe58dbac03e78ead24a (patch) | |
tree | dbb2f8a4104d9ae2b79ea4577a6a155cd0f5ff1c | |
parent | 230ee3eb976320cec9e55450c24e6c66fe6ea059 (diff) | |
download | sord-a84205b935feb5d402bc9fe58dbac03e78ead24a.tar.gz sord-a84205b935feb5d402bc9fe58dbac03e78ead24a.tar.bz2 sord-a84205b935feb5d402bc9fe58dbac03e78ead24a.zip |
Remove use of Python 2.6 syntax
git-svn-id: http://svn.drobilla.net/sord/trunk@76 3d64ff67-21c5-427c-a301-fe4f08042e5a
-rw-r--r-- | wscript | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -134,7 +134,7 @@ def fix_docs(ctx): os.remove('index.html') os.symlink('group__sord.html', 'index.html') - except Exception as e: + except Exception, e: Logs.error("Failed to fix up Doxygen documentation (%s)\n" % e) def upload_docs(ctx): |