Mercurial > libervia-backend
comparison sat/plugins/plugin_xep_0363.py @ 3155:3a8755fdc78d
plugin XEP-0363: fixed errback args in fileHTTPUpload
author | Goffi <goffi@goffi.org> |
---|---|
date | Tue, 04 Feb 2020 18:24:15 +0100 |
parents | 559a625a236b |
children | f2bb57348587 |
comparison
equal
deleted
inserted
replaced
3154:f2d3ab4390a3 | 3155:3a8755fdc78d |
---|---|
192 download_d.addCallbacks( | 192 download_d.addCallbacks( |
193 self._uploadCb, | 193 self._uploadCb, |
194 self._uploadEb, | 194 self._uploadEb, |
195 (sat_file, slot), | 195 (sat_file, slot), |
196 None, | 196 None, |
197 (sat_file), | 197 (sat_file,), |
198 ) | 198 ) |
199 | 199 |
200 return progress_id, download_d | 200 return progress_id, download_d |
201 | 201 |
202 def _uploadCb(self, __, sat_file, slot): | 202 def _uploadCb(self, __, sat_file, slot): |