Remove white space between print and ()
TrivialFix Change-Id: Ic0aaa63fc1ea06bd235e22b6e60b62454fe75d03
This commit is contained in:
parent
2a281aecce
commit
7069324b2f
@ -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)
|
||||
|
@ -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, "
|
||||
|
Loading…
Reference in New Issue
Block a user