diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2013-07-08 10:39:54 +1000 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2013-07-08 10:39:54 +1000 |
commit | 03d9566e0df45c72bffa99fe244a92f0279da56f (patch) | |
tree | b4c9cc9260769d7f79f62c0fe16a2c5a5746e6ed /django/db/backends/mysql/client.py | |
parent | 0b69a755029f8a8ba6005b9d77be8132a7bc0fb3 (diff) | |
download | django-03d9566e0df45c72bffa99fe244a92f0279da56f.tar.gz |
A large number of stylistic cleanups across django/db/
Diffstat (limited to 'django/db/backends/mysql/client.py')
-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 1cf8ceef9c..8364c7b6e6 100644 --- a/django/db/backends/mysql/client.py +++ b/django/db/backends/mysql/client.py @@ -3,6 +3,7 @@ import sys from django.db.backends import BaseDatabaseClient + class DatabaseClient(BaseDatabaseClient): executable_name = 'mysql' @@ -37,4 +38,3 @@ class DatabaseClient(BaseDatabaseClient): sys.exit(os.system(" ".join(args))) else: os.execvp(self.executable_name, args) - |