From fa50632a9d87c3989566fed3e49c160a132e0d14 Mon Sep 17 00:00:00 2001 From: Agustin Henze Date: Sun, 9 Mar 2014 03:14:40 +0100 Subject: Imported Upstream version 6.4.0 --- nikola/plugins/basic_import.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'nikola/plugins/basic_import.py') diff --git a/nikola/plugins/basic_import.py b/nikola/plugins/basic_import.py index 0d94d16..27c0eb4 100644 --- a/nikola/plugins/basic_import.py +++ b/nikola/plugins/basic_import.py @@ -48,8 +48,8 @@ class ImportMixin(object): name = "import_mixin" needs_config = False - doc_usage = "[options] wordpress_export_file" - doc_purpose = "import a wordpress dump." + doc_usage = "[options] export_file" + doc_purpose = "import a dump from a different engine." cmd_options = [ { 'name': 'output_folder', @@ -93,7 +93,7 @@ class ImportMixin(object): else: self.import_into_existing_site = True utils.LOGGER.notice('The folder {0} already exists - assuming that this is a ' - 'already existing nikola site.'.format(self.output_folder)) + 'already existing Nikola site.'.format(self.output_folder)) filename = os.path.join(os.path.dirname(utils.__file__), 'conf.py.in') # The 'strict_undefined=True' will give the missing symbol name if any, @@ -151,7 +151,7 @@ class ImportMixin(object): time=datetime.datetime.now().strftime('%Y%m%d_%H%M%S'), name=self.name) config_output_path = os.path.join(self.output_folder, filename) - utils.LOGGER.notice('Configuration will be written to: {0}'.format(config_output_path)) + utils.LOGGER.info('Configuration will be written to: {0}'.format(config_output_path)) return config_output_path -- cgit v1.2.3