From 1e6cc0394666ae95e9521f1016d07d56a3ed43a5 Mon Sep 17 00:00:00 2001 From: Calum Lind Date: Tue, 21 Sep 2021 21:40:13 +0100 Subject: [Lint] Fix spelling mistakes A quick fix of some of the mistakes caught by codespell. Updated readme with new IRC server Useful to add it as part of linting checks. --- deluge/ui/gtk3/files_tab.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'deluge/ui/gtk3/files_tab.py') diff --git a/deluge/ui/gtk3/files_tab.py b/deluge/ui/gtk3/files_tab.py index 6fda2fd37..50f8a4587 100644 --- a/deluge/ui/gtk3/files_tab.py +++ b/deluge/ui/gtk3/files_tab.py @@ -449,7 +449,7 @@ class FilesTab(Tab): try: value = completed_bytes / self.treestore[parent][1] * 100 except ZeroDivisionError: - # Catch the unusal error found when moving folders around + # Catch the unusual error found when moving folders around value = 0 self.treestore[parent][3] = value self.treestore[parent][2] = '%i%%' % value -- cgit