Merge pull request #876 from lixuefeng2/develop

Fix code style: add missing whitespace after operators
This commit is contained in:
lukpueh 2019-09-17 12:57:48 +02:00 committed by GitHub
commit fdc0bc12a5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -76,8 +76,8 @@ def setUp(self):
self.PORT = random.randint(30000, 45000)
self.server_proc = popen_python(['simple_server.py', str(self.PORT)])
logger.info('\n\tServer process started.')
logger.info('\tServer process id: '+str(self.server_proc.pid))
logger.info('\tServing on port: '+str(self.PORT))
logger.info('\tServer process id: ' + str(self.server_proc.pid))
logger.info('\tServing on port: ' + str(self.PORT))
junk, rel_target_filepath = os.path.split(target_filepath)
self.url = 'http://localhost:'+str(self.PORT)+'/'+rel_target_filepath