From 1bc737ec9df9b86d6c112037ee7ebbb19ebce4d9 Mon Sep 17 00:00:00 2001 From: Jorrit Schaap <schaap@astron.nl> Date: Wed, 24 Apr 2019 10:27:12 +0000 Subject: [PATCH] SW-657: python3 print --- LTA/LTAIngest/LTAIngestClient/bin/ingestremoveexportjob | 2 +- LTA/LTAIngest/LTAIngestClient/bin/ingestreport | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/LTA/LTAIngest/LTAIngestClient/bin/ingestremoveexportjob b/LTA/LTAIngest/LTAIngestClient/bin/ingestremoveexportjob index 566aa4644da..328051f7957 100755 --- a/LTA/LTAIngest/LTAIngestClient/bin/ingestremoveexportjob +++ b/LTA/LTAIngest/LTAIngestClient/bin/ingestremoveexportjob @@ -29,7 +29,7 @@ export_group_id is the mom_id of the export job''') with IngestRPC(busname=options.busname, servicename=options.servicename, broker=options.broker) as rpc: export_group_id = int(args[0]) if rpc.removeExportJob(export_group_id): - print rpc.getReport(export_group_id) + print(rpc.getReport(export_group_id)) else: logger.warn('Failed to remove export group id %s', export_group_id) diff --git a/LTA/LTAIngest/LTAIngestClient/bin/ingestreport b/LTA/LTAIngest/LTAIngestClient/bin/ingestreport index c74c885059a..ef2119a796e 100755 --- a/LTA/LTAIngest/LTAIngestClient/bin/ingestreport +++ b/LTA/LTAIngest/LTAIngestClient/bin/ingestreport @@ -33,10 +33,10 @@ export_group_id is the mom_id of the export job''') export_group_ids = [int(args[0])] else: export_group_ids = rpc.getExportIds() - print export_group_ids + print(export_group_ids) for export_group_id in export_group_ids: - print rpc.getReport(export_group_id) + print(rpc.getReport(export_group_id)) if __name__ == '__main__': main() -- GitLab