diff options
| author | Russell Keith-Magee <russell@keith-magee.com> | 2011-01-03 13:52:28 +0000 |
|---|---|---|
| committer | Russell Keith-Magee <russell@keith-magee.com> | 2011-01-03 13:52:28 +0000 |
| commit | 9f49666114fdee60abb68d19b2746db126d2c75c (patch) | |
| tree | ce191d0a7ff3a1b30cbe97ac47799c7a06394b08 | |
| parent | 12d5c09fdde882a9d40ac7bee74b872e5e4471ec (diff) | |
[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
| -rw-r--r-- | django/db/backends/mysql/client.py | 2 |
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: |
