From: Rodrigo Ramírez Norambuena Date: Wed, 5 Oct 2016 18:56:33 +0000 (-0300) Subject: Fix spelling word into Raise TypeError X-Git-Tag: v2.4.0~10^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F449%2Fhead;p=thirdparty%2Fbabel.git Fix spelling word into Raise TypeError --- diff --git a/babel/core.py b/babel/core.py index 0b7b4edd..79ce6199 100644 --- a/babel/core.py +++ b/babel/core.py @@ -262,7 +262,7 @@ class Locale(object): elif isinstance(identifier, Locale): return identifier elif not isinstance(identifier, string_types): - raise TypeError('Unxpected value for identifier: %r' % (identifier,)) + raise TypeError('Unexpected value for identifier: %r' % (identifier,)) parts = parse_locale(identifier, sep=sep) input_id = get_locale_identifier(parts)