witten
/
luminotes
Archived
1
0
Fork 0

Fix for broken URL generation.

This commit is contained in:
Dan Helfman 2007-08-02 04:05:15 +00:00
parent b58f5cb1a1
commit ef53bb8159
1 changed files with 1 additions and 1 deletions

View File

@ -108,7 +108,7 @@ def fix_note_contents( contents, notebook_id, note_ids ):
https_url = settings[ u"global" ].get( u"luminotes.https_url", u"" )
return u"".join( [
match.group( 1 ), https_url, match.group( 2 ), note_ids[ title + ".html" ], match.group( 3 ),
match.group( 1 ), https_url, match.group( 2 ), note_ids[ title + ".html" ],
match.group( 4 ), match.group( 5 ), match.group( 6 ),
] )