From 3490efe121593e3f32361b0adf9cbc90d3ea604c Mon Sep 17 00:00:00 2001 From: Stuart Campbell <stuart@stuartcampbell.me> Date: Wed, 3 Jun 2015 08:57:46 -0400 Subject: [PATCH] Added print statement for debugging --- Code/Tools/reports/facility-code-changes.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Code/Tools/reports/facility-code-changes.py b/Code/Tools/reports/facility-code-changes.py index 12bc8dc7b85..051ee866fb0 100644 --- a/Code/Tools/reports/facility-code-changes.py +++ b/Code/Tools/reports/facility-code-changes.py @@ -28,8 +28,6 @@ if __name__ == '__main__': print("ERROR: Specified repository location is not a directory.") exit() - # repolocation = '/home/scu/sources/git/mantidproject/mantid' - organisations = ['STFC', 'ORNL', 'ESS', 'ILL', 'PSI', 'ANSTO', 'KITWARE', 'JUELICH', 'OTHERS'] domains = {} @@ -230,7 +228,7 @@ if __name__ == '__main__': else: removed_datarow[org] = facility_removed[date_key][org] - # print("In {0}, {1} has {2} commits".format(date_key, org, facility_commits[date_key][org])) + print("In {0}, {1} has {2} commits".format(date_key, org, facility_commits[date_key][org])) commits_writer.writerow(commits_datarow) changed_writer.writerow(changed_datarow) -- GitLab