summaryrefslogtreecommitdiff
path: root/src/pip/_vendor/msgpack/ext.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/pip/_vendor/msgpack/ext.py')
-rw-r--r--src/pip/_vendor/msgpack/ext.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pip/_vendor/msgpack/ext.py b/src/pip/_vendor/msgpack/ext.py
index 25544c555..23e0d6b41 100644
--- a/src/pip/_vendor/msgpack/ext.py
+++ b/src/pip/_vendor/msgpack/ext.py
@@ -56,7 +56,7 @@ class Timestamp(object):
Note: Negative times (before the UNIX epoch) are represented as negative seconds + positive ns.
"""
if not isinstance(seconds, int_types):
- raise TypeError("seconds must be an interger")
+ raise TypeError("seconds must be an integer")
if not isinstance(nanoseconds, int_types):
raise TypeError("nanoseconds must be an integer")
if not (0 <= nanoseconds < 10**9):