From 8ff9d66f649cc3f09bfe92c3b339c39dbc791770 Mon Sep 17 00:00:00 2001 From: Marco Pesenti Gritti Date: Mon, 15 Jan 2007 23:33:04 +0000 Subject: Fix wrong method signatures --- (limited to 'sugar/emulator.py') 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) -- cgit v0.9.1