Fixed #15006 -- Removed some stray tabs in python code. Thanks to vanschelven for the report.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@15134 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Russell Keith-Magee 2011-01-03 13:19:59 +00:00
parent a00e8d4e42
commit dc25fa776a
2 changed files with 3 additions and 3 deletions

View File

@ -50,7 +50,7 @@ class TRPhoneNumberField(CharField):
class TRIdentificationNumberField(Field):
"""
A Turkey Identification Number number.
See: http://tr.wikipedia.org/wiki/T%C3%BCrkiye_Cumhuriyeti_Kimlik_Numaras%C4%B1
See: http://tr.wikipedia.org/wiki/T%C3%BCrkiye_Cumhuriyeti_Kimlik_Numaras%C4%B1
Checks the following rules to determine whether the number is valid:
@ -76,7 +76,7 @@ class TRIdentificationNumberField(Field):
if int(value[0]) == 0:
raise ValidationError(self.error_messages['invalid'])
chksum = (sum([int(value[i]) for i in xrange(0,9,2)])*7-
sum([int(value[i]) for i in xrange(1,9,2)])) % 10
sum([int(value[i]) for i in xrange(1,9,2)])) % 10
if chksum != int(value[9]) or \
(sum([int(value[i]) for i in xrange(10)]) % 10) != int(value[10]):
raise ValidationError(self.error_messages['invalid'])

View File

@ -27,7 +27,7 @@ class DatabaseClient(BaseDatabaseClient):
if '/' in host:
args += ["--socket=%s" % host]
else:
args += ["--host=%s" % host]
args += ["--host=%s" % host]
if port:
args += ["--port=%s" % port]
if db: