summaryrefslogtreecommitdiff
path: root/django/db/backends/mysql/client.py
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2011-01-03 13:19:59 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2011-01-03 13:19:59 +0000
commitdc25fa776a9d6650fcc4876748932f3d63d04b6e (patch)
treed997beed803cc6d684664868ef71be08b1e57586 /django/db/backends/mysql/client.py
parenta00e8d4e4204bfb730ba3eac2ee11ad83c8ec91b (diff)
downloaddjango-dc25fa776a9d6650fcc4876748932f3d63d04b6e.tar.gz
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
Diffstat (limited to 'django/db/backends/mysql/client.py')
-rw-r--r--django/db/backends/mysql/client.py2
1 files changed, 1 insertions, 1 deletions
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: