summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2020-01-22 23:12:42 +0100
committerFlorian Bruhin <me@the-compiler.org>2020-01-22 23:12:42 +0100
commit9c425cf2a76f53e7abb8ba4bf654985cde80fe5c (patch)
tree907f1419baf8223760abb57b9280212750672ef7
parent7eb17b40a3031dc6752ff578a3e10e21226e8b79 (diff)
downloadqutebrowser-9c425cf2a76f53e7abb8ba4bf654985cde80fe5c.tar.gz
qutebrowser-9c425cf2a76f53e7abb8ba4bf654985cde80fe5c.zip
mkvenv: Fix typos
-rw-r--r--scripts/mkvenv.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/mkvenv.py b/scripts/mkvenv.py
index 95432f1bb..8a6426e47 100644
--- a/scripts/mkvenv.py
+++ b/scripts/mkvenv.py
@@ -50,7 +50,7 @@ def parse_args() -> argparse.Namespace:
parser.add_argument('--pyqt-version',
choices=pyqt_versions(),
default='auto',
- help="PyQt version to install")
+ help="PyQt version to install.")
parser.add_argument('--pyqt-type',
choices=['binary', 'source', 'link'],
default='binary',
@@ -78,7 +78,7 @@ def pyqt_versions() -> typing.List[str]:
def run_venv(venv_dir: pathlib.Path, executable, *args: str) -> None:
- """Runt he given command inside the virtualenv."""
+ """Run the given command inside the virtualenv."""
subdir = 'Scripts' if os.name == 'nt' else 'bin'
try: