From 97d6dac8487f31a7a45d40f64c5e68d478a7eedf Mon Sep 17 00:00:00 2001
From: "James E. Blair" <jim@acmegating.com>
Date: Sat, 6 Apr 2024 10:12:52 -0700
Subject: [PATCH] Update test.py for python3

Change-Id: I667579a5969727190e08b282b6b673cf9bf8cf36
---
 test.py | 28 ++++++++++++++--------------
 1 file changed, 14 insertions(+), 14 deletions(-)

diff --git a/test.py b/test.py
index 23c1a940f..36fe35ca5 100755
--- a/test.py
+++ b/test.py
@@ -19,20 +19,20 @@
 # limitations under the License.
 
 def main():
-    print "Vikram: The exquisite corpse"
-    print "Looked so pale and beautiful"
-    print "And yet it's still dead"
-    print "...and then it woke up to eat the living...."
-    print "daylights"
-    print "are brighter than nightlights"
-    print "I like vi"
-    print "I like vim"
-    print "The snake which cannot cast its skin has to die."
-    print "My name is khan............................................................................................"
-    print ":-)"
-    print "First lame commit:-)"
-    print "SB"
-    print "That which does not kill me makes me strong."
+    print("The exquisite corpse")
+    print("Looked so pale and beautiful")
+    print("And yet it's still dead")
+    print("...and then it woke up to eat the living....")
+    print("daylights")
+    print("are brighter than nightlights")
+    print("I like vi")
+    print("I like vim")
+    print("The snake which cannot cast its skin has to die.")
+    print("My name is khan............................................................................................")
+    print(":-)")
+    print("First lame commit:-)")
+    print("SB")
+    print("That which does not kill me makes me strong.")
 
 if __name__ == "__main__":
     main()