diff --git a/inventory_provider/tasks/ims_worker.py b/inventory_provider/tasks/ims_worker.py index 34eb6a710072ec2d917f22fda568c5b32073ab86..c6da8d22d42de999bfa3f8feb546583ab2f29000 100644 --- a/inventory_provider/tasks/ims_worker.py +++ b/inventory_provider/tasks/ims_worker.py @@ -65,10 +65,8 @@ def export_data_for_otrs(self, files_to_export=None): if OTRSFiles.CUSTOMER_COMPANIES in files_to_export: cus_co_path = temp_path.joinpath(f'{prefix}customer_company.csv') with open(cus_co_path, 'w+') as f: - logger.debug('\n\n1\n\n') writer = csv.writer(f, delimiter='^') writer.writerows(ims_data.otrs_get_customer_company_rows(ds)) - logger.debug('\n\n2\n\n') if OTRSFiles.CUSTOMER_USERS in files_to_export: cus_usr_path = temp_path.joinpath(f'{prefix}customer_user.csv')