Skip to content

Commit 18f517a

Browse files
spark404wilderrodrigues
authored andcommitted
pep8
1 parent 9385f07 commit 18f517a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

systemvm/patches/debian/config/opt/cloud/bin/cs/CsProcess.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,16 @@
2020
import CsHelper
2121
import logging
2222

23+
2324
class CsProcess(object):
2425
""" Manipulate processes """
2526

2627
def __init__(self, search):
2728
self.search = search
2829

29-
def start(self, thru, background = ''):
30-
#if(background):
31-
#cmd = cmd + " &"
30+
def start(self, thru, background=''):
31+
# if(background):
32+
# cmd = cmd + " &"
3233
logging.info("Started %s", " ".join(self.search))
3334
os.system("%s %s %s" % (thru, " ".join(self.search), background))
3435

@@ -41,4 +42,3 @@ def find(self):
4142
if matches == items:
4243
self.pid.append(re.split("\s+", i)[1])
4344
return len(self.pid) > 0
44-

0 commit comments

Comments
 (0)