aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/objc/protobuf_compiler.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/objc/protobuf_compiler.py')
-rw-r--r--tools/objc/protobuf_compiler.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/objc/protobuf_compiler.py b/tools/objc/protobuf_compiler.py
index bd789b7ddd..bc99093a5e 100644
--- a/tools/objc/protobuf_compiler.py
+++ b/tools/objc/protobuf_compiler.py
@@ -15,8 +15,10 @@
"""Dummy python executable."""
+from __future__ import print_function
+
import sys
if __name__ == '__main__':
- print 'Bazel does not yet support protobuf compiling.'
+ print('Bazel does not yet support protobuf compiling.')
sys.exit(1)