Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sugar
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <mpg@redhat.com>2007-01-15 23:33:04 (GMT)
committer Marco Pesenti Gritti <mpg@redhat.com>2007-01-15 23:33:04 (GMT)
commit8ff9d66f649cc3f09bfe92c3b339c39dbc791770 (patch)
tree087952e14cf5952c141152fca2343595797e44ef /sugar
parent8c13f20d3ceeec648b56595f5c4366aa3aa2dd5f (diff)
Fix wrong method signatures
Diffstat (limited to 'sugar')
-rw-r--r--sugar/emulator.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/sugar/emulator.py b/sugar/emulator.py
index b37dae6..3698672 100644
--- a/sugar/emulator.py
+++ b/sugar/emulator.py
@@ -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)