aboutsummaryrefslogtreecommitdiffstats
path: root/release.py
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2017-06-04 16:38:55 -0400
committerPaul Kehrer <paul.l.kehrer@gmail.com>2017-06-04 10:38:55 -1000
commit3ff51d49aa5362e6e870380b3fa7b0fdf17a18ce (patch)
tree98966108fda1c0978bdf03fdcbc528e6f6bf1901 /release.py
parent3661011e396bf8df35f4a665293e390ada5b4102 (diff)
downloadcryptography-3ff51d49aa5362e6e870380b3fa7b0fdf17a18ce.tar.gz
cryptography-3ff51d49aa5362e6e870380b3fa7b0fdf17a18ce.tar.bz2
cryptography-3ff51d49aa5362e6e870380b3fa7b0fdf17a18ce.zip
typo fix (#3674)
Diffstat (limited to 'release.py')
-rw-r--r--release.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release.py b/release.py
index 0016b659..ec2e8f72 100644
--- a/release.py
+++ b/release.py
@@ -28,7 +28,7 @@ def run(*args, **kwargs):
try:
subprocess.check_output(list(args), **kwargs)
except subprocess.CalledProcessError as e:
- # Reraise this with a different type so that str(e) is somethign with
+ # Reraise this with a different type so that str(e) is something with
# stdout in it.
raise Exception(e.cmd, e.returncode, e.output)