Remove python2 statements that breaks the build

Change-Id: I2f4a7ff044ce286dc388245d819cc7db98a9c5b3
diff --git a/tools/build/bazel/osgi_feature_bundler.py b/tools/build/bazel/osgi_feature_bundler.py
index 40e944a..a4550e0 100755
--- a/tools/build/bazel/osgi_feature_bundler.py
+++ b/tools/build/bazel/osgi_feature_bundler.py
@@ -46,14 +46,14 @@
     import sys
 
     if len(sys.argv) < 2:
-        print 'USAGE'
+        print('USAGE')
         sys.exit(1)
 
     output = sys.argv[1]
     args = sys.argv[2:]
 
     if len(args) % 2 != 0:
-        print 'There must be an even number of args: file mvn_coords'
+        print('There must be an even number of args: file mvn_coords')
         sys.exit(2)
 
     files = zip(*[iter(args)]*2)