]> review.fuel-infra Code Review - openstack-build/heat-build.git/commitdiff
Use built-in print() instead of print statement
authorChang Bo Guo <guochbo@cn.ibm.com>
Wed, 18 Sep 2013 07:56:48 +0000 (00:56 -0700)
committerChang Bo Guo <guochbo@cn.ibm.com>
Wed, 18 Sep 2013 08:50:26 +0000 (01:50 -0700)
In python 3 print statement is not supported, so we should use
only print() functions.

Fixes bug 1226943

Change-Id: If88d77982ddbd1eb47265f15a27b747cd8011e76

tools/cfn-json2yaml
tools/experimental_ssh_eventlet.py
tools/install_venv.py
tools/state_transitions.py

index fd855956afde03684b53d96544f5cf41df224204..54de9ddb987781f6cff3961925afcb7906a892f5 100755 (executable)
@@ -28,18 +28,18 @@ def main():
     elif os.path.isfile(path):
         convert_file(path)
     else:
-        print 'File or directory not valid: %s' % path
+        print('File or directory not valid: %s' % path)
 
 def convert_file(path):
     f = open(path, 'r')
-    print template_format.convert_json_to_yaml(f.read())
+    print(template_format.convert_json_to_yaml(f.read()))
 
 def convert_directory(dirpath):
     for path in os.listdir(dirpath):
         if not path.endswith('.template') and not path.endswith('.json'):
             continue
         yamlpath = re.sub('\..*$', '.yaml', path)
-        print 'Writing to %s' % yamlpath
+        print('Writing to %s' % yamlpath)
         f = open(os.path.join(dirpath, path), 'r')
         out = open(os.path.join(dirpath, yamlpath), 'w')
         yml = template_format.convert_json_to_yaml(f.read())
index eece3ead318f70fbef3b625da846c7d4a942f2e9..d4d5e66ca7473a2e2422f3be8dab1c6aa1cb9bdc 100755 (executable)
@@ -9,7 +9,7 @@ import random
 
 def monitor(hostname, username, id):
 
-    print '%s %s %d' % (hostname, username, id)
+    print('%s %s %d' % (hostname, username, id))
     sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
     sock.connect((hostname, 22))
 
@@ -45,7 +45,7 @@ def monitor(hostname, username, id):
             #if data:
             #    stderr.append(data)
 
-        print '%d %d %s' % (id, sl, ''.join(stdout))
+        print('%d %d %s' % (id, sl, ''.join(stdout)))
         #print ''.join(stderr)
 
 
index 104dd42acc3f3872b4f9356f0910d5cfab272b96..d4cf4d6a9447d0b1d6342640e4a9e2767038f05a 100644 (file)
@@ -44,7 +44,7 @@ def print_help(venv, root):
 
     Also, make test will automatically use the virtualenv.
     """
-    print help % (venv, root)
+    print(help % (venv, root))
 
 
 def main(argv):
index 355e3194c574dcccbec75ba215ce335329e60e55..c03ef08dfefe6ca8f6dfde5a669a122ee9bf067f 100755 (executable)
@@ -23,19 +23,19 @@ actions = resource.Resource.ACTIONS
 stack_statuses = resource.Resource.STATUSES
 engine_statuses = ("Alive", "Dead")
 
-print """\
+print("""\
 | Orig action | Stack status | Engine status | New action | Behavior         |
 |-------------+--------------+---------------+------------+------------------|\
-"""
+""")
 
 for orig_action in actions:
     for stack_status in stack_statuses:
         for new_action in actions:
             if stack_status == resource.Resource.IN_PROGRESS:
                 for engine_status in engine_statuses:
-                    print "| %11s | %12s | %13s | %10s |                  |" \
-                        % (orig_action, stack_status, engine_status,
-                           new_action)
+                    print("| %11s | %12s | %13s | %10s |                  |" \
+                          % (orig_action, stack_status, engine_status,
+                          new_action))
             else:
-                print "| %11s | %12s | %13s | %10s |                  |" \
-                    % (orig_action, stack_status, "NA", new_action)
+                print("| %11s | %12s | %13s | %10s |                  |" \
+                      % (orig_action, stack_status, "NA", new_action))