Skip to content

Commit

Permalink
refine_spa: fix error message
Browse files Browse the repository at this point in the history
  • Loading branch information
keitaroyam committed Sep 9, 2023
1 parent 0268447 commit 5aa7ace
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions servalcat/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
Mozilla Public License, version 2.0; see LICENSE.
"""

__version__ = '0.4.35'
__date__ = '2023-09-01'
__version__ = '0.4.36'
__date__ = '2023-09-09'
2 changes: 1 addition & 1 deletion servalcat/spa/run_refmac.py
Original file line number Diff line number Diff line change
Expand Up @@ -724,7 +724,7 @@ def main(args):
if not args.prepare_only:
refmac_ver = utils.refmac.check_version(args.exe)
if not refmac_ver:
raise SystemExit("Error: Check Refmac instllation or use --exe to give the location.\n{}".format(e))
raise SystemExit("Error: Check Refmac instllation or use --exe to give the location.")
if not args.no_refmacat and refmac_ver >= (5, 8, 404):
logger.writeln(" will use gemmi to prepare restraints")
use_gemmi_prep = True
Expand Down

0 comments on commit 5aa7ace

Please sign in to comment.