Skip to content

Commit 1eca74e

Browse files
author
Roberto Alsina
committedMar 8, 2018
Fix #143
1 parent 783a9e4 commit 1eca74e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎v7/import_jekyll/import_jekyll.plugin

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ PluginCategory = Command
77

88
[Documentation]
99
Author = Miguel Angel Garcia
10-
Version = 0.2
10+
Version = 0.3
1111
Website = http://plugins.getnikola.com/#import_jekyll
1212
Description = Import a Jekyll or Octopress site.

‎v7/import_jekyll/import_jekyll.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ def _write_site(self):
126126
self.write_configuration(conf_out_path, conf_template_render)
127127

128128
def _import_posts(self):
129-
rel_path = self._jekyll_config.get('source', 'source')
129+
rel_path = self._jekyll_config.get('source', '')
130130
posts_path = os.path.join(self._jekyll_path, rel_path, '_posts')
131131
importer = JekyllPostImport()
132132

0 commit comments

Comments
 (0)
Please sign in to comment.