Daniel Brötzmann pushed to branch master at gajim / gajim


Commits:
71707400 by wurstsalat at 2022-05-23T01:45:04+02:00
fix: FileTransferWindow: Fix variable name

- - - - -


1 changed file:

- gajim/gtk/filetransfer.py


Changes:

=====================================
gajim/gtk/filetransfer.py
=====================================
@@ -905,8 +905,8 @@ def _on_pause_resume_button_clicked(self, widget):
         if is_transfer_paused(file_props):
             file_props.last_time = time.time()
             file_props.paused = False
-            types = {'r': 'download', 's': 'upload'}
-            self.set_status(file_props, types[sid[0]])
+            status_types = {'r': 'download', 's': 'upload'}
+            self.set_status(file_props, status_types[sid[0]])
             self._toggle_pause_continue(True)
             if file_props.continue_cb:
                 file_props.continue_cb()



View it on GitLab: 
https://dev.gajim.org/gajim/gajim/-/commit/71707400e64447c236ef746191713603e74c5621

-- 
View it on GitLab: 
https://dev.gajim.org/gajim/gajim/-/commit/71707400e64447c236ef746191713603e74c5621
You're receiving this email because of your account on dev.gajim.org.


_______________________________________________
Commits mailing list
[email protected]
https://lists.gajim.org/cgi-bin/listinfo/commits

Reply via email to