From d3a4a9c10fe2936835438f2eb08141b277c64a92 Mon Sep 17 00:00:00 2001 From: tabea kirchner <t.kirchner@fz-juelich.de> Date: Thu, 7 Mar 2019 13:23:23 +0100 Subject: [PATCH] used new formatting for print statement --- utils/data_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/data_utils.py b/utils/data_utils.py index df15e9a..6394fd9 100644 --- a/utils/data_utils.py +++ b/utils/data_utils.py @@ -49,7 +49,7 @@ class DataValidator: if not os.path.exists(data_dir): data_dir = os.path.join(os.path.abspath('../../datasets')) - print('Using %s as the data directory.' % data_dir) + print('Using {} as the data directory.'.format(data_dir)) # Check if the directory exists assert os.path.exists(data_dir), \ -- GitLab