diff --git a/NEWS b/NEWS index f9b8c155..deff125d 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,5 @@ +* Actually handle multiple mime types (dcbw) +* Keep owner in the center in mesh view (dcbw) * Suppress annoying warnings about unknown activities from the PS (dcbw) * Don't close GlibTCPServer sockets prematurely (dcbw) diff --git a/sugar/activity/bundle.py b/sugar/activity/bundle.py index feded650..74016d8d 100644 --- a/sugar/activity/bundle.py +++ b/sugar/activity/bundle.py @@ -132,7 +132,7 @@ class Bundle: if cp.has_option(section, 'mime_types'): mime_list = cp.get(section, 'mime_types') - self._mime_types = mime_list.strip(';') + self._mime_types = mime_list.strip(';').split(';') if cp.has_option(section, 'show_launcher'): if cp.get(section, 'show_launcher') == 'no':