From 2e64eb8c42224010f037066fc4a56650d0c91587 Mon Sep 17 00:00:00 2001 From: Arthur de Jong Date: Sun, 29 Aug 2010 19:27:59 +0000 Subject: spelling check git-svn-id: http://arthurdejong.org/svn/python-stdnum/python-stdnum@38 9dea7c4f-944c-4273-ac1a-574ede026edc --- stdnum/isan.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'stdnum/isan.py') diff --git a/stdnum/isan.py b/stdnum/isan.py index 1ef178b..85a1211 100644 --- a/stdnum/isan.py +++ b/stdnum/isan.py @@ -55,9 +55,9 @@ def split(number): return ( number[0:12], number[12:16], number[16:], '', '' ) def compact(number, strip_check_digits=True): - """Convert the ISAN to the minimal (hexadicimal) representation. - digits. This strips the number of any valid separators and removes - surrounding whitespace. The check digits are also removed by default.""" + """Convert the ISAN to the minimal representation. This strips the number + of any valid separators and removes surrounding whitespace. The check + digits are also removed by default.""" number = list(split(number)) number[2] = number[4] = '' return ''.join(number) -- cgit v1.2.3