Remove unnecessary white space

To fix the pep8 warning:

  E211 whitespace before '('
  print ("Duplicate option name %s" % optname)

Change-Id: Id041e12754679538cd6dab6fdc25b357ee628389
This commit is contained in:
KATO Tomoyuki 2016-09-30 20:40:00 +09:00
parent 52d9c52723
commit dfa602df09
1 changed files with 1 additions and 1 deletions

View File

@ -279,7 +279,7 @@ class OptionsCache(object):
def _add_opt(self, optname, group, opt):
if optname in self._opts_by_name:
if self._verbose >= 2:
print ("Duplicate option name %s" % optname)
print("Duplicate option name %s" % optname)
return
opt.default = _sanitize_default(opt)