We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1182f66 commit 55866b2Copy full SHA for 55866b2
ExtractTable/__init__.py
@@ -163,7 +163,7 @@ def process_file(
163
big_gen = self.bigfile_upload(filepath=os.path.basename(filepath))
164
with open(filepath, 'rb') as ifile:
165
rq.post(big_gen['url'], data=big_gen['fields'], files={'file': ifile})
166
- trigger_resp = self.trigger_process(None, signed_filename=os.path.basename(filepath), **kwargs)
+ trigger_resp = self.trigger_process(None, signed_filename=big_gen["fields"]["key"], dup_check=dup_check, **kwargs)
167
168
for _type, _obj in trigger_resp.items():
169
self.__setattr__(_type, _obj)
ExtractTable/__version__.py
@@ -1,4 +1,4 @@
1
-VERSION = (2, 0, 1)
+VERSION = (2, 0, 2)
2
PRERELEASE = None # "alpha", "beta" or "rc"
3
REVISION = None
4
0 commit comments