Skip to content

Commit

Permalink
Fix dxtbx.install_format (#434)
Browse files Browse the repository at this point in the history
By replacing dxtbx.python with libtbx.python.

Fixes #433
  • Loading branch information
dagewa committed Sep 21, 2021
1 parent 3556ef4 commit 20c14de
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions newsfragments/434.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix broken ``dxtbx.install_format`` command.
2 changes: 1 addition & 1 deletion src/dxtbx/command_line/install_format.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def install_package(home_location, format_classes):
if not (home_location / "dxtbx_custom").check():
(home_location / "dxtbx_custom").mksymlinkto(home_location)
procrunner.run(
["dxtbx.python", home_location / "setup.py", "develop", "--user"],
["libtbx.python", home_location / "setup.py", "develop", "--user"],
working_directory=home_location,
print_stdout=False,
).check_returncode()
Expand Down

0 comments on commit 20c14de

Please sign in to comment.