Skip to content

Commit

Permalink
[ci skip] corrected path separator in osem_reconstruction_gpu.py
Browse files Browse the repository at this point in the history
  • Loading branch information
evgueni-ovtchinnikov committed Jan 19, 2023
1 parent d488b02 commit 7ad6754
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/Python/PET/osem_reconstruction_gpu.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def check_file_exists(filename):
sino_file = args['--sino']
if not sino_file:
print("Sinogram not given, using data/examples/PET/my_forward_projection.hs")
sino_file = examples_data_path('PET') + "/my_forward_projection.hs"
sino_file = os.path.join(examples_data_path('PET'), "my_forward_projection.hs")
if not file_exists(sino_file):
raise error("Sinogram not found: " + sino_file)

Expand Down

0 comments on commit 7ad6754

Please sign in to comment.