diff --git a/.drone.yml b/.drone.yml index 191ae8e..4d93cc5 100644 --- a/.drone.yml +++ b/.drone.yml @@ -33,7 +33,7 @@ steps: ### develop # ### Testing # -# If you have a a Docker daemon running on your local machine and the Drone +# If you have a Docker daemon running on your local machine and the Drone # [command-line](https://readme.drone.io/cli/install) installed, you can run all # of the tests via `drone exec`. If not, or if you don't want to wait for the # Docker container to spin up and install all of the prerequisites, you can make diff --git a/mkdocs_semiliterate/plugin.py b/mkdocs_semiliterate/plugin.py index 94894f5..419eea7 100644 --- a/mkdocs_semiliterate/plugin.py +++ b/mkdocs_semiliterate/plugin.py @@ -420,8 +420,7 @@ semiliterate.ensurelines from_file_path = os.path.join(from_directory, from_file) try: with open(from_file_path) as original_file: - utils.log.debug( - "mkdocs-simple-plugin: Scanning {}...".format(from_file)) + utils.log.debug(f"mkdocs-semiliterate: Scanning {from_file}...") # extraction = StreamExtract( extraction = StreamInclusion( input_stream=original_file, @@ -432,7 +431,8 @@ semiliterate.ensurelines patterns=self.patterns, **kwargs) return extraction.extract() - except BaseException: - utils.log.error("mkdocs-simple-plugin: could not build {}".format( - from_file_path)) + except BaseException as error: + utils.log.error( + f"mkdocs-semiliterate: could not build {from_file_path}:\n " + + str(error)) return False diff --git a/setup.cfg b/setup.cfg index 200050d..f483d94 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = mkdocs-semiliterate -version = 0.4.0 +version = 0.4.1 description = Extension of mkdocs-simple-plugin adding easy content inclusion long_description = file: README.md long_description_content_type = text/markdown