diff --git a/pyfpdb/fpdb_import.py b/pyfpdb/fpdb_import.py index 788adb22..2ff5fc5a 100644 --- a/pyfpdb/fpdb_import.py +++ b/pyfpdb/fpdb_import.py @@ -175,7 +175,11 @@ class Importer: def addFileToList(self, file, site, filter): now = datetime.datetime.utcnow() file = os.path.splitext(os.path.basename(file))[0] - id = self.database.storeFile([unicode(file, "utf8", "replace"), site, now, now, 0, 0, 0, 0, 0, 0, False]) + try: + file = unicode(file, "utf8", "replace") + except TypeError: + pass + id = self.database.storeFile([file, site, now, now, 0, 0, 0, 0, 0, 0, False]) self.database.commit() return [site] + [filter] + [id]