Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSascha Silbe <sascha-pgp@silbe.org>2010-10-15 20:22:43 (GMT)
committer Sascha Silbe <sascha-pgp@silbe.org>2010-10-22 17:26:26 (GMT)
commit10f51cc51af7c5c72bbd52f7d7e92fd6a6101591 (patch)
treeab7f89d91f556cf756c46c72c0f6856742699670
parent19acf3b6b5cd96c63ec1dc414b4ec3df6056ad5d (diff)
bundlebuilder: ignore incorrect pylint warning
pylint isn't smart enough to figure out the return type of Popen.communicate(), so squelch the warning.
-rw-r--r--src/sugar/activity/bundlebuilder.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sugar/activity/bundlebuilder.py b/src/sugar/activity/bundlebuilder.py
index 1d7b613..60721d3 100644
--- a/src/sugar/activity/bundlebuilder.py
+++ b/src/sugar/activity/bundlebuilder.py
@@ -228,6 +228,7 @@ class SourcePackager(Packager):
return list_files(self.config.source_dir,
IGNORE_DIRS, IGNORE_FILES)
+ # pylint: disable=E1103
return [path.strip() for path in stdout.strip('\n').split('\n')]
def package(self):