diff --git a/src/caosadvancedtools/crawler.py b/src/caosadvancedtools/crawler.py index 15d780db1836f1a747fdb189c4ce7aa00ff74b8f..5ce325e05e6094bdac25149aba349ec29dee3f1f 100644 --- a/src/caosadvancedtools/crawler.py +++ b/src/caosadvancedtools/crawler.py @@ -248,7 +248,7 @@ class Crawler(object): matches[idx])+"\n") logger.debug(msg, extra={"identifier": str(item), - 'category': "matches"}) + 'category': "matches"}) def cached_find_identifiables(self, identifiables): if self.use_cache: diff --git a/unittests/test_table_importer.py b/unittests/test_table_importer.py index db40361c481365b8d88a7932e4f68048db22c5bb..0232128832c4a43c18927eecc6612daa5de368f2 100644 --- a/unittests/test_table_importer.py +++ b/unittests/test_table_importer.py @@ -71,7 +71,7 @@ class ConverterTest(unittest.TestCase): df = xls_file.parse() df = self.importer.read_xls(test_file) assert df.shape[0] == 2 - assert df.d.iloc[0] == datetime.datetime(1980,12,31,13,24,23) + assert df.d.iloc[0] == datetime.datetime(1980, 12, 31, 13, 24, 23) def test_date(self): test_file = os.path.join(os.path.dirname(__file__), "date.xlsx")