summaryrefslogtreecommitdiff
path: root/django/db/backends/mysql/client.py
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2013-07-08 10:39:54 +1000
committerAlex Gaynor <alex.gaynor@gmail.com>2013-07-08 10:39:54 +1000
commit03d9566e0df45c72bffa99fe244a92f0279da56f (patch)
treeb4c9cc9260769d7f79f62c0fe16a2c5a5746e6ed /django/db/backends/mysql/client.py
parent0b69a755029f8a8ba6005b9d77be8132a7bc0fb3 (diff)
downloaddjango-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.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 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)
-