Skip to content

Commit

Permalink
Merge pull request #73 from Clinical-Genomics/bug-fix
Browse files Browse the repository at this point in the history
log warning string wrong
  • Loading branch information
mayabrandi authored Jul 20, 2021
2 parents a12dfa2 + 3604afb commit 3f48fd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cg_lims/EPPs/move/rerun_samples.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def check_same_sample_in_many_rerun_pools(rerun_arts: List[Artifact]) -> None:
duplicate_samples = list(set(all_samples))
if duplicate_samples:
raise DuplicateSampleError(
f"Waring same sample in many pools: {' ,'.join(duplicate_samples)}"
f"Waring same sample in many pools: {' ,'.join([sample.id for sample in duplicate_samples])}"
)


Expand Down

0 comments on commit 3f48fd0

Please sign in to comment.