summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2023-07-24 20:14:43 +0200
committerFlorian Bruhin <me@the-compiler.org>2023-07-24 20:16:11 +0200
commitd145f0c253be81f1ab49804450f97d263cfe7787 (patch)
tree91377d0dd7676974c7456e99ca675131055ca8cf
parent7fbf9b56fa12126ac9ad0b64b43c3fdcde6c10eb (diff)
downloadqutebrowser-d145f0c253be81f1ab49804450f97d263cfe7787.tar.gz
qutebrowser-d145f0c253be81f1ab49804450f97d263cfe7787.zip
scripts: Fix typo
-rwxr-xr-xscripts/mkvenv.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/mkvenv.py b/scripts/mkvenv.py
index 835a82d38..4ab5d8c10 100755
--- a/scripts/mkvenv.py
+++ b/scripts/mkvenv.py
@@ -276,7 +276,7 @@ def install_pyqt_wheels(venv_dir: pathlib.Path,
pip_install(venv_dir, *wheels)
-def install_pyqt_shapshot(venv_dir: pathlib.Path, packages: List[str]) -> None:
+def install_pyqt_snapshot(venv_dir: pathlib.Path, packages: List[str]) -> None:
"""Install PyQt packages from the snapshot server."""
utils.print_title("Installing PyQt snapshots")
pip_install(venv_dir, '-U', *packages, '--no-deps', '--pre',
@@ -492,7 +492,7 @@ def install_pyqt(venv_dir, args):
if args.pyqt_type == 'binary':
install_pyqt_binary(venv_dir, args.pyqt_version)
if args.pyqt_snapshot:
- install_pyqt_shapshot(venv_dir, args.pyqt_snapshot.split(','))
+ install_pyqt_snapshot(venv_dir, args.pyqt_snapshot.split(','))
elif args.pyqt_type == 'source':
install_pyqt_source(venv_dir, args.pyqt_version)
elif args.pyqt_type == 'link':