Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
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
parent8c13f20d3ceeec648b56595f5c4366aa3aa2dd5f (diff)
Fix wrong method signatures
-rwxr-xr-xpylint.sh2
-rw-r--r--sugar/emulator.py4
2 files changed, 3 insertions, 3 deletions
diff --git a/pylint.sh b/pylint.sh
index cd4b407..0791742 100755
--- a/pylint.sh
+++ b/pylint.sh
@@ -1,6 +1,6 @@
#!/bin/sh
-TODO="C0111,C0301,C0322,W0311,C0324,W0331,W0212,W0611,W0613,W0201,W0106,W0622,W0403,W0612,W0102,W0404,W0704,W0402,W0702,W0401,E0602,W0221,E1111,W0101,W0105,W0601,W0602,W0703,W0701,W0312,W0231,W0233"
+TODO="C0111,C0301,C0322,W0311,C0324,W0331,W0212,W0611,W0613,W0201,W0106,W0622,W0403,W0612,W0102,W0404,W0704,W0402,W0702,W0401,E0602,E1111,W0101,W0105,W0601,W0602,W0703,W0701,W0312,W0231,W0233"
BROKEN="C0103,E1101"
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)