summaryrefslogtreecommitdiffstats
path: root/deluge/ui/gtk3/files_tab.py
diff options
context:
space:
mode:
authorCalum Lind <calumlind+deluge@gmail.com>2021-09-21 21:40:13 +0100
committerCalum Lind <calumlind+deluge@gmail.com>2021-09-21 21:43:53 +0100
commit1e6cc0394666ae95e9521f1016d07d56a3ed43a5 (patch)
tree9c4a1cd6da29403c8f14e6f190490ff39ab656ae /deluge/ui/gtk3/files_tab.py
parentd8526ba65335bcd48e3f5fa7056081d9a8cd5bd3 (diff)
downloaddeluge-1e6cc0394666ae95e9521f1016d07d56a3ed43a5.tar.gz
deluge-1e6cc0394666ae95e9521f1016d07d56a3ed43a5.tar.bz2
deluge-1e6cc0394666ae95e9521f1016d07d56a3ed43a5.zip
[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.
Diffstat (limited to 'deluge/ui/gtk3/files_tab.py')
-rw-r--r--deluge/ui/gtk3/files_tab.py2
1 files changed, 1 insertions, 1 deletions
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