commit | 064fd069ef88aebe0fdf9850dc35bcffcb616763 | [log] [tgz] |
---|---|---|
author | Johannes Krampf <johannes.krampf@googlemail.com> | Sun Jan 12 11:14:54 2014 -0500 |
committer | Kevin O'Connor <kevin@koconnor.net> | Mon Jan 20 12:42:43 2014 -0500 |
tree | fbe4c723b603af0811d18f5dd4b71151e3f92cca | |
parent | 24ef4fd0d25d5133ced303eb225eceb08549081f [diff] [blame] |
build: Make print statements in scripts python3 compatible. Signed-off-by: Johannes Krampf <johannes.krampf@googlemail.com>
diff --git a/scripts/checksum.py b/scripts/checksum.py index 8c7665d..773fa7a 100755 --- a/scripts/checksum.py +++ b/scripts/checksum.py
@@ -10,7 +10,7 @@ def main(): data = sys.stdin.read() ords = map(ord, data) - print "sum=%x\n" % sum(ords) + print("sum=%x\n" % sum(ords)) if __name__ == '__main__': main()