diff options
| author | Carl Hetherington <cth@carlh.net> | 2019-10-14 11:23:07 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2019-10-14 11:23:07 +0200 |
| commit | 95bd2d068f67f7c0e611c720c95bfd6781329d86 (patch) | |
| tree | 8528b76ab11d4a7fdecded52e6a49d6f13708c21 /wscript | |
| parent | 8775f802d15e19ff9251d0daff49994a0fc145bc (diff) | |
Remove python 2 style print now that we are importing print_function from future.
Diffstat (limited to 'wscript')
| -rw-r--r-- | wscript | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -596,7 +596,7 @@ def dist(ctx): r = git_revision() if r is not None: f = open('.git_revision', 'w') - print >>f,r + print(r, file=f) f.close() ctx.excl = """ |
