diff --git a/helpers/images.py b/helpers/images.py
index 57c2a718..9d93ed0c 100644
--- a/helpers/images.py
+++ b/helpers/images.py
@@ -113,7 +113,9 @@ def get_dicom_order(path):
#get_dicom_order("/home/ross/Downloads/DICOM HEAD/STD4/SER1/*.dcm")
def pretty_print_dicom(dataset, indent=0):
- return "\n
".join(print_dicom(dataset, indent))
+ l = print_dicom(dataset, indent)
+ print(l)
+ return "\n
".join(l)
def print_dicom(dataset, indent=0):