Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
oops
  • Loading branch information
ralsina committed Aug 5, 2016
1 parent a53298a commit d812509
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion v7/planetoid/planetoid.py
Expand Up @@ -253,7 +253,7 @@ def generate_post(entry):
meta_path = os.path.join('posts', unique_id + '.meta')
post_path = os.path.join('posts', unique_id + '.txt')
with codecs.open(meta_path, 'wb+', 'utf8') as fd:
fd.write(.. title: '%s\n' % entry.title.replace('\n', ' '))
fd.write('.. title: %s\n' % entry.title.replace('\n', ' '))
fd.write('.. slug: %s\n' % unique_id)
fd.write('.. date: %s\n' % entry.date.strftime('%Y/%m/%d %H:%M'))
fd.write('.. link: %s\n' % entry.link)
Expand Down

0 comments on commit d812509

Please sign in to comment.