Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/xgds/xgds_core
Browse files Browse the repository at this point in the history
  • Loading branch information
tamarmot committed Mar 23, 2019
2 parents 5df98d0 + 94faed6 commit dd49744
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions xgds_core/importer/importHandler.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def get_new_files(self):
# having successfully imported previously
previous = ImportedTelemetryFile.objects.filter(filename=filename, returncode=0)
if previous:
print '%s is in the database as having been imported' % filename
# print '%s is in the database as having been imported' % filename
# Add it to the previously imported files for statistics
self.previously_imported_files.append(filename)
# Add it to the locally cached copy of processed files
Expand All @@ -88,7 +88,7 @@ def get_new_files(self):
if 1 == len(matches):
if 'ignore' in matches[0] and matches[0]['ignore']:
# matched an explicit ignore rule
print 'Ignoring', basename
# print 'Ignoring', basename
self.ignored_files.append(filename)
continue
if 'order' in matches[0].keys():
Expand All @@ -99,7 +99,7 @@ def get_new_files(self):
# unique match, add to the list of things to import
heappush(self.files_to_process, (order, (filename, matches[0])))
elif 0 == len(matches):
print 'Warning: file %s does not match any importer config' % filename
#print 'Warning: file %s does not match any importer config' % filename
self.unmatched_files.append(filename)
else:
print 'Warning: file %s matches more than one importer config' % filename
Expand Down

0 comments on commit dd49744

Please sign in to comment.