Zim

Merge lp:~blue119/zim/zim into lp:~jaap.karssenberg/zim/pyzim

Proposed by YPWang
Status: Merged
Merged at revision: 551
Proposed branch: lp:~blue119/zim/zim
Merge into: lp:~jaap.karssenberg/zim/pyzim
Diff against target: 12 lines (+1/-1)
1 file modified
zim/formats/__init__.py (+1/-1)
To merge this branch: bzr merge lp:~blue119/zim/zim
Reviewer Review Type Date Requested Status
Jaap Karssenberg Pending
Review via email: mp+107033@code.launchpad.net

Description of the change

fixed Bug #1003344: import error when exporting page as Markdown format

To post a comment you must log in.
Revision history for this message
Jaap Karssenberg (jaap.karssenberg) wrote :

Thanks, will merge it.

lp:~blue119/zim/zim updated
551. By Jaap Karssenberg

Merge bug fix

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'zim/formats/__init__.py'
2--- zim/formats/__init__.py 2012-04-10 20:18:07 +0000
3+++ zim/formats/__init__.py 2012-05-23 14:54:22 +0000
4@@ -159,7 +159,7 @@
5 @param name: the format name
6 @returns: a module object
7 '''
8- return zim.plugins.get_module('zim.formats', name)
9+ return zim.plugins.get_module('zim.formats', canonical_name(name))
10
11
12 def get_parser(name, *arg, **kwarg):