From 9f49666114fdee60abb68d19b2746db126d2c75c Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Mon, 3 Jan 2011 13:52:28 +0000 Subject: [PATCH] [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 --- django/db/backends/mysql/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/db/backends/mysql/client.py b/django/db/backends/mysql/client.py index 24dc642abe..1cf8ceef9c 100644 --- a/django/db/backends/mysql/client.py +++ b/django/db/backends/mysql/client.py @@ -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: