Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSimon Schampijer <simon@schampijer.de>2009-03-24 16:11:56 (GMT)
committer Simon Schampijer <simon@schampijer.de>2009-03-24 16:17:22 (GMT)
commit0c44d15b7044ae14d021622bedb31fe32ca08e6e (patch)
tree4e91fbce254010f70ae1a6560791a3a5461d50f0 /src
parent1d0b974cb029440bed64bc5f637f063921fe5845 (diff)
Bundlebuilder: Don't include whole directory in src tarball
regression introduced by #397
Diffstat (limited to 'src')
-rw-r--r--src/sugar/activity/bundlebuilder.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sugar/activity/bundlebuilder.py b/src/sugar/activity/bundlebuilder.py
index 90fac55..cbcc7cd 100644
--- a/src/sugar/activity/bundlebuilder.py
+++ b/src/sugar/activity/bundlebuilder.py
@@ -213,7 +213,7 @@ class SourcePackager(Packager):
return list_files(self.config.source_dir,
IGNORE_DIRS, IGNORE_FILES)
- return [path.strip() for path in '\n'.split(stdout)]
+ return [path.strip() for path in stdout.strip('\n').split('\n')]
def package(self):
tar = tarfile.open(self.package_path, 'w:bz2')