From 725f0589f807d1d174eeaec2b430e1d19e797f40 Mon Sep 17 00:00:00 2001 From: Worros Date: Wed, 15 Oct 2008 00:15:01 +0800 Subject: [PATCH] Fix importing single files again - missing arguement --- pyfpdb/GuiBulkImport.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/GuiBulkImport.py b/pyfpdb/GuiBulkImport.py index c2347528..978f328d 100644 --- a/pyfpdb/GuiBulkImport.py +++ b/pyfpdb/GuiBulkImport.py @@ -63,7 +63,7 @@ class GuiBulkImport (threading.Thread): if os.path.isdir(self.inputFile): self.import_dir() else: - self.importer.addImportFile() + self.importer.addImportFile(self.inputFile) self.importer.runImport() self.importer.clearFileList()