summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2021-10-21 18:37:26 +0200
committerFlorian Bruhin <me@the-compiler.org>2021-10-21 18:37:26 +0200
commitbcd91f3d4a0c2abec3c2742681f71f77643cfd3d (patch)
tree8fd726db24ea1d246330c28b07e75bea1f7654f9
parent2d85e4100624f09f14a7256f81870f292d152af5 (diff)
downloadqutebrowser-bcd91f3d4a0c2abec3c2742681f71f77643cfd3d.tar.gz
qutebrowser-bcd91f3d4a0c2abec3c2742681f71f77643cfd3d.zip
Fix typo
-rw-r--r--qutebrowser/utils/resources.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/qutebrowser/utils/resources.py b/qutebrowser/utils/resources.py
index ff5ec9d9a..f561d6747 100644
--- a/qutebrowser/utils/resources.py
+++ b/qutebrowser/utils/resources.py
@@ -82,7 +82,7 @@ def _glob(
else: # zipfile.Path or importlib_resources compat object
# Unfortunately, we can't tell mypy about resource_path being of type
# Union[pathlib.Path, zipfile.Path] because we set "python_version = 3.6" in
- # .mypy.ini, but the zipfiel stubs (correctly) only declare zipfile.Path with
+ # .mypy.ini, but the zipfile stubs (correctly) only declare zipfile.Path with
# Python 3.8...
assert glob_path.is_dir(), glob_path # type: ignore[unreachable]
for subpath in glob_path.iterdir():