Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Schampijer <simon@schampijer.de>2010-12-15 10:46:56 (GMT)
committer Simon Schampijer <simon@schampijer.de>2010-12-15 10:46:56 (GMT)
commit75c2d1dd8b2ee5ee70957e19fa4ff314479da29b (patch)
tree555615c6d0ee1f1c215621d2be071af3087d4aa9
parentf28f282f35a7411dcb67690eabcb44788a737cbd (diff)
bundlebuilder: move the mime type installation in a separate method, part of #10427
missing part of: 434cd22fa205519c912127209b55c64e07092025 (hint by fcrozat, on master the patch is d7e0e22f4979a0e4baf2d3124833e65f5184f4de)
-rw-r--r--src/sugar/bundle/activitybundle.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/sugar/bundle/activitybundle.py b/src/sugar/bundle/activitybundle.py
index c39c519..a073c7a 100644
--- a/src/sugar/bundle/activitybundle.py
+++ b/src/sugar/bundle/activitybundle.py
@@ -317,6 +317,13 @@ class ActivityBundle(Bundle):
else:
logging.warning(err)
+ self.install_mime_type(install_path)
+
+ return install_path
+
+ def install_mime_type(self, install_path):
+ ''' Update the mime type database and install the mime type icon
+ '''
xdg_data_home = os.getenv('XDG_DATA_HOME',
os.path.expanduser('~/.local/share'))
@@ -351,8 +358,6 @@ class ActivityBundle(Bundle):
os.path.join(installed_icons_dir,
os.path.basename(info_file)))
- return install_path
-
def _symlink(self, src, dst):
if not os.path.isfile(src):
return