removed debug print

fixes #27864
This commit is contained in:
Brian Coca 2017-08-07 20:44:35 -04:00
parent 5df4ff8983
commit e4a997c97e

View file

@ -210,7 +210,6 @@ class ActionModule(ActionBase):
Bool
"""
file_ext = path.splitext(source_file)
print(file_ext[-1][2:])
return bool(len(file_ext) > 1 and file_ext[-1][1:] in self.valid_extensions)
def _load_files(self, filename, validate_extensions=False):