summaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
Diffstat (limited to 'util')
-rw-r--r--util/chargen4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/chargen b/util/chargen
index 42c40f13e4..9ba14d3d6a 100644
--- a/util/chargen
+++ b/util/chargen
@@ -1,4 +1,4 @@
-#!/usr/bin/env python2
+#!/usr/bin/env python3
# Copyright 2019 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
@@ -62,7 +62,7 @@ def main(args):
try:
chargen(modulo, max_chars)
except KeyboardInterrupt:
- print
+ print()
if __name__ == '__main__':
main(sys.argv[1:])