Skip to content
This repository was archived by the owner on Mar 17, 2020. It is now read-only.

Commit 201c193

Browse files
author
chenyumic
authored
Minor typo fix.
1 parent c0006c8 commit 201c193

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

appengine/standard_python37/cloudsql/main_mysql.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def main():
3434
# If deployed, use the local socket interface for accessing Cloud SQL
3535
unix_socket = '/cloudsql/{}'.format(db_connection_name)
3636
cnx = pymysql.connect(user=db_user, password=db_password,
37-
host=unix_socket, db=db_name)
37+
unix_socket=unix_socket, db=db_name)
3838
else:
3939
# If running locally, use the TCP connections instead
4040
# Set up Cloud SQL Proxy (cloud.google.com/sql/docs/mysql/sql-proxy)

0 commit comments

Comments
 (0)