Remove white space between print and ()

TrivialFix

Change-Id: I0dca3493d43ee8642ae6d2f55597013eef261026
This commit is contained in:
yuyafei 2016-07-05 16:42:00 +08:00
parent 9045f33869
commit f9d5a8683d

View File

@ -556,7 +556,7 @@ class Server(object):
pids = {}
for pid_file, pid in self.iter_pid_files(**kwargs):
if not pid: # Catches None and 0
print (_('Removing pid file %s with invalid pid') % pid_file)
print(_('Removing pid file %s with invalid pid') % pid_file)
remove_file(pid_file)
continue
try: