Skip to content

Commit

Permalink
Fixed written filenames matching user input
Browse files Browse the repository at this point in the history
  • Loading branch information
PrinceWalnut committed Nov 23, 2023
1 parent 20c15dd commit 9f1fe2b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/laue_dials/command_line/sequence_to_stills.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,8 +230,8 @@ def run(args=None, phil=phil_scope):
logger.info(
"Time Taken to Split into Stills = %f seconds", time.time() - start_time
)
ExperimentList(new_experiments).as_file("stills.expt")
total_reflections.as_file("stills.refl")
ExperimentList(new_experiments).as_file(params.output.experiments)
total_reflections.as_file(params.output.reflections)


if __name__ == "__main__":
Expand Down

0 comments on commit 9f1fe2b

Please sign in to comment.