Skip to content

Commit caea879

Browse files
committed
Correct vendor name
1 parent e1cd2b0 commit caea879

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

awx/main/management/commands/check_db.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class Command(BaseCommand):
1111
"""Checks connection to the database, and prints out connection info if not connected"""
1212

1313
def handle(self, *args, **options):
14-
if connection.vendor == 'postgres':
14+
if connection.vendor == 'postgresql':
1515

1616
with connection.cursor() as cursor:
1717
cursor.execute("SELECT version()")

0 commit comments

Comments
 (0)