Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/sugar/bundle/activitybundle.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/sugar/bundle/activitybundle.py')
-rw-r--r--src/sugar/bundle/activitybundle.py18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/sugar/bundle/activitybundle.py b/src/sugar/bundle/activitybundle.py
index b21f25d..94c44b0 100644
--- a/src/sugar/bundle/activitybundle.py
+++ b/src/sugar/bundle/activitybundle.py
@@ -87,9 +87,9 @@ class ActivityBundle(Bundle):
"activity startup.")
def _raw_manifest(self):
- f = self.get_file("MANIFEST")
+ f = self.get_file('MANIFEST')
if not f:
- logging.warning("Activity directory lacks a MANIFEST file.")
+ logging.warning('Activity directory lacks a MANIFEST file.')
return []
ret = [line.strip() for line in f.readlines()]
@@ -108,7 +108,7 @@ class ActivityBundle(Bundle):
lines = self._raw_manifest()
# Remove trailing newlines, they do not help keep absolute position.
- while lines and lines[-1] == "":
+ while lines and lines[-1] == '':
lines = lines[:-1]
for num, line in enumerate(lines):
@@ -117,20 +117,20 @@ class ActivityBundle(Bundle):
# Remove duplicates
if line in lines[0:num]:
- lines[num] = ""
+ lines[num] = ''
logging.warning('Bundle %s: duplicate entry in MANIFEST: %s',
self._name, line)
continue
# Remove MANIFEST
- if line == "MANIFEST":
- lines[num] = ""
+ if line == 'MANIFEST':
+ lines[num] = ''
logging.warning('Bundle %s: MANIFEST includes itself: %s',
self._name, line)
# Remove invalid files
if not self.is_file(line):
- lines[num] = ""
+ lines[num] = ''
logging.warning('Bundle %s: invalid entry in MANIFEST: %s',
self._name, line)
@@ -328,7 +328,7 @@ class ActivityBundle(Bundle):
for path in paths:
if path in manifestfiles:
manifestfiles.remove(path)
- elif path != "MANIFEST":
+ elif path != 'MANIFEST':
logging.warning('Bundle %s: %s not in MANIFEST', self._name,
path)
if strict_manifest:
@@ -336,7 +336,7 @@ class ActivityBundle(Bundle):
# Is anything in MANIFEST left over after accounting for all files?
if manifestfiles:
- err = ("Bundle %s: files in MANIFEST not included: %s" %
+ err = ('Bundle %s: files in MANIFEST not included: %s' %
(self._name, str(manifestfiles)))
if strict_manifest:
raise MalformedBundleException(err)