diff --git a/geospaas/nansat_ingestor/management/commands/ingest.py b/geospaas/nansat_ingestor/management/commands/ingest.py index 986ec5c..76251c5 100644 --- a/geospaas/nansat_ingestor/management/commands/ingest.py +++ b/geospaas/nansat_ingestor/management/commands/ingest.py @@ -46,7 +46,6 @@ def handle(self, *args, **options): """ print("WARNING!!! nansat_ingestor app will be deprecated soon and no longer " "accessible. Please use `LOCALHarvester` of geospaas harvesting package instead.") - input("Press Enter to continue...") non_ingested_uris, n_points, nansat_options = self._get_args(*args, **options) for non_ingested_uri in non_ingested_uris: diff --git a/geospaas/nansat_ingestor/management/commands/ingest_hyrax.py b/geospaas/nansat_ingestor/management/commands/ingest_hyrax.py index 1d0bfb7..a418f45 100644 --- a/geospaas/nansat_ingestor/management/commands/ingest_hyrax.py +++ b/geospaas/nansat_ingestor/management/commands/ingest_hyrax.py @@ -15,7 +15,6 @@ class Command(IngestCommand): def handle(self, *args, **options): print("WARNING!!! nansat_ingestor app will be deprecated soon and no longer " "accessible. Please use `LOCALHarvester` of geospaas harvesting package instead.") - input("Press Enter to continue...") print('Searching netcdf files. May take some time...\n\n\n') nc_uris = find_netcdf_uris(args[0]) num_nc_uris = len(nc_uris) diff --git a/geospaas/nansat_ingestor/management/commands/ingest_thredds_crawl.py b/geospaas/nansat_ingestor/management/commands/ingest_thredds_crawl.py index f96505a..4e94e2f 100644 --- a/geospaas/nansat_ingestor/management/commands/ingest_thredds_crawl.py +++ b/geospaas/nansat_ingestor/management/commands/ingest_thredds_crawl.py @@ -91,7 +91,6 @@ def add_arguments(self, parser): def handle(self, *args, **options): print("WARNING!!! nansat_ingestor app will be deprecated soon and no longer " "accessible. Please use `LOCALHarvester` of geospaas harvesting package instead.") - input("Press Enter to continue...") if not len(options['url']) == 1: raise IOError('Please provide a url to the data') url = options.pop('url')[0]