summaryrefslogtreecommitdiff
path: root/django/core/management/commands/sqlcustom.py
diff options
context:
space:
mode:
authorJustin Bronn <jbronn@gmail.com>2007-09-20 13:13:18 +0000
committerJustin Bronn <jbronn@gmail.com>2007-09-20 13:13:18 +0000
commite95fda3e2673494b6f39365d291fc09d1e6eb561 (patch)
treebad0c869d3c27214f942250caf0b47e6a0f86532 /django/core/management/commands/sqlcustom.py
parent7376474260a967e7ad88ee5bf554b4a28e3e7feb (diff)
gis: fixed sqlall and sqlcustom commands for this branch.
git-svn-id: http://code.djangoproject.com/svn/django/branches/gis@6395 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/core/management/commands/sqlcustom.py')
-rw-r--r--django/core/management/commands/sqlcustom.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/management/commands/sqlcustom.py b/django/core/management/commands/sqlcustom.py
index 2148a9f307..68d4fe3c9f 100644
--- a/django/core/management/commands/sqlcustom.py
+++ b/django/core/management/commands/sqlcustom.py
@@ -7,4 +7,4 @@ class Command(AppCommand):
def handle_app(self, app, **options):
from django.core.management.sql import sql_custom
- return '\n'.join(sql_custom(app))
+ return '\n'.join(sql_custom(app, self.style))