summaryrefslogtreecommitdiff
path: root/buildtools/wafsamba/samba_version.py
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2010-10-06 20:11:01 +1100
committerAndrew Tridgell <tridge@samba.org>2010-10-06 11:13:05 +0000
commitc24240bcd2f833321f45ea4ce0b6c6d080a3b990 (patch)
tree0075709dd705752b56ee242bd01a72092c6a22c9 /buildtools/wafsamba/samba_version.py
parent8fcccae6aa4f48e7ef03fbf8e5b5f24ea0209d2e (diff)
downloadsamba-c24240bcd2f833321f45ea4ce0b6c6d080a3b990.tar.gz
samba-c24240bcd2f833321f45ea4ce0b6c6d080a3b990.tar.bz2
samba-c24240bcd2f833321f45ea4ce0b6c6d080a3b990.zip
waf: fixed some python3.x portability issues
these have crept into the tree over time. Maybe we should add testing of a range of python versions to autobuild?
Diffstat (limited to 'buildtools/wafsamba/samba_version.py')
-rw-r--r--buildtools/wafsamba/samba_version.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildtools/wafsamba/samba_version.py b/buildtools/wafsamba/samba_version.py
index 82f882f646..735a70002d 100644
--- a/buildtools/wafsamba/samba_version.py
+++ b/buildtools/wafsamba/samba_version.py
@@ -173,7 +173,7 @@ class samba_version_file(samba_version):
value = split_line[1].strip('"')
version_dict[split_line[0]] = value
except:
- print "Failed to parse line %s from %s" % (line, version_file)
+ print("Failed to parse line %s from %s" % (line, version_file))
raise
super(samba_version_file, self).__init__(version_dict, have_git=have_git)