Merge "Remove white space between print and ()"

This commit is contained in:
Jenkins 2016-11-27 11:39:35 +00:00 committed by Gerrit Code Review
commit 6a536b5dcc
2 changed files with 7 additions and 7 deletions

View File

@ -89,7 +89,7 @@ class NSXClient(object):
self._put("xml",
"/api/4.0/edgePublish/tuningConfiguration",
et.tostring(tuning))
print ("Edge resource limits set")
print("Edge resource limits set")
if __name__ == "__main__":
@ -101,9 +101,9 @@ if __name__ == "__main__":
parser.add_option("-p", "--password", default="default", dest="password",
help="NSX Manager password")
(options, args) = parser.parse_args()
print ("vsm-ip: %s" % options.vsm_ip)
print ("username: %s" % options.username)
print ("password: %s" % options.password)
print("vsm-ip: %s" % options.vsm_ip)
print("username: %s" % options.username)
print("password: %s" % options.password)
nsx_client = NSXClient(options.vsm_ip, options.username,
options.password)

View File

@ -104,9 +104,9 @@ if __name__ == "__main__":
help="Enable the autodraft setting for NSX "
"distributed firewal.")
(options, args) = parser.parse_args()
print ("vsm-ip: %s" % options.vsm_ip)
print ("username: %s" % options.username)
print ("password: %s" % options.password)
print("vsm-ip: %s" % options.vsm_ip)
print("username: %s" % options.username)
print("password: %s" % options.password)
if options.disabled and options.enabled:
print("Please provide only one of the options: --disable-autodraft, "