fix: Improve error message when a scan fails
continuous-integration/drone/push Build is failing Details
continuous-integration/drone/pr Build was killed Details

Also syncs somewhat better with the latest release of mkdocs-simple-plugin
  and corrects some typos.
This commit is contained in:
Glen Whitney 2022-08-01 19:42:21 -07:00
parent 6247034203
commit 53b5a7c76f
3 changed files with 7 additions and 7 deletions

View File

@ -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

View File

@ -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

View File

@ -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