~ubuntu-branches/debian/wheezy/zim/wheezy

« back to all changes in this revision

Viewing changes to zim/applications.py

  • Committer: Package Import Robot
  • Author(s): Raphaël Hertzog
  • Date: 2012-04-04 08:46:45 UTC
  • mfrom: (1.2.19)
  • Revision ID: package-import@ubuntu.com-20120404084645-vqpdgvz2ajy2ci6v
Tags: 0.56-1
* New upstream release.
* Update Suggests with more dependencies required by optional plugins.

Show diffs side-by-side

added added

removed removed

Lines of Context:
179
179
                if stderr:
180
180
                        logger.warn(stderr)
181
181
 
182
 
                return [line + '\n' for line in stdout.splitlines()]
 
182
                return map(unicode, [line + '\n' for line in stdout.splitlines()])
183
183
                        # Explicit newline conversion, e.g. on windows \r\n -> \n
 
184
                        # FIXME Assume local encoding is respected (!?)
184
185
 
185
186
        def spawn(self, args=None, callback=None, data=None, cwd=None):
186
187
                '''Start the application in the background and return immediately.