Skip to content

Commit

Permalink
Deletes false comment and changes error to stderr
Browse files Browse the repository at this point in the history
Co-authored-by: David Pape <[email protected]>
  • Loading branch information
SKernchen and zyzzyxdonta authored Nov 29, 2023
1 parent a63483b commit efe2f8d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,6 @@ cffconvert = { git = "https://github.com/citation-file-format/cff-converter-pyth
toml = "^0.10.2"
pyparsing = "^3.0.9"
requests = "^2.28.1"

# Packages for developers
pydantic-settings = "^2.1.0"

[tool.poetry.group.dev.dependencies]
Expand Down
2 changes: 1 addition & 1 deletion src/hermes/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def configure(config_path: pathlib.Path, working_path: pathlib.Path):
_config['hermes'] = hermes_config
_config['logging'] = hermes_config.get('logging', _config['logging'])
except ValidationError as e:
print(e)
print(e, file=sys.stderr)
sys.exit(1)
except FileNotFoundError:
if config_path.name != 'hermes.toml':
Expand Down

0 comments on commit efe2f8d

Please sign in to comment.