Fix wrong method signatures

This commit is contained in:
Marco Pesenti Gritti
2007-01-16 00:33:04 +01:00
parent 8c13f20d3c
commit 8ff9d66f64
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -90,7 +90,7 @@ class XephyrProcess(Process):
def get_name(self):
return 'Xephyr'
def start(self):
def start(self, standard_output=False):
Process.start(self)
os.environ['DISPLAY'] = ":%d" % (self._display)
os.environ['SUGAR_XEPHYR_PID'] = '%d' % self.pid
@@ -105,7 +105,7 @@ class XnestProcess(Process):
def get_name(self):
return 'Xnest'
def start(self):
def start(self, standard_output=False):
Process.start(self)
os.environ['DISPLAY'] = ":%d" % (self._display)