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

Backport of r15134 from trunk.

git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@15138 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Russell Keith-Magee 2011-01-03 13:52:28 +00:00
parent 12d5c09fdd
commit 9f49666114
1 changed files with 1 additions and 1 deletions

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: