Remove white space between print and ()

TrivialFix

Change-Id: I9dc1f4530929d59e92f8ef874150fe98e7026eea
This commit is contained in:
yuyafei 2016-07-05 16:09:34 +08:00
parent b569a11ce5
commit a416a9c96b
1 changed files with 4 additions and 4 deletions

View File

@ -34,17 +34,17 @@ def setup_logging():
def main():
setup_logging()
print "Welcome to Monanas config command line"
print "Type help for help about commands"
print("Welcome to Monanas config command line")
print("Type help for help about commands")
inter = interpreter.DSLInterpreter()
cmd = ""
while("exit" != cmd.lower()):
cmd = raw_input(">> ")
if cmd != "":
try:
print inter.execute_string(cmd)
print(inter.execute_string(cmd))
except Exception as e:
print "Failed : " + str(e)
print("Failed : " + str(e))
if __name__ == "__main__":
main()