summaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2016-04-18 23:43:21 -0400
committerDavid Robillard <d@drobilla.net>2016-04-18 23:43:21 -0400
commita205a2b9331ea24e74544a2b907ca679fe3b460f (patch)
treead5a73f9b695adae2cbf252ac99e0ee6620e0b59 /wscript
parent6abedd41d69ec336e6afa65692c122aa77215d33 (diff)
downloaddrobillad-a205a2b9331ea24e74544a2b907ca679fe3b460f.tar.gz
drobillad-a205a2b9331ea24e74544a2b907ca679fe3b460f.tar.bz2
drobillad-a205a2b9331ea24e74544a2b907ca679fe3b460f.zip
Fix top-level wscript for Python 3
Diffstat (limited to 'wscript')
-rw-r--r--wscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/wscript b/wscript
index e201947..185caa2 100644
--- a/wscript
+++ b/wscript
@@ -69,7 +69,7 @@ def rebase(ctx):
os.system('git branch bak-'+ str(time.time()))
os.system('git rebase master')
except Exception:
- print "Repository is not clean, skipped"
+ print("Repository is not clean, skipped")
finally:
os.chdir(old_cwd)