Skip to content

Commit fc0c03a

Browse files
committed
Misplaced conditional comma. Fixes issue #6.
1 parent 9f36ea2 commit fc0c03a

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

_mysql.c

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -594,12 +594,11 @@ _mysql_ConnectionObject_Initialize(
594594
&init_command, &read_default_file,
595595
&read_default_group,
596596
&client_flag, &ssl,
597-
&local_infile, /* DO NOT PATCH FOR RECONNECT, IDIOTS
598-
IF YOU DO THIS, I WILL NOT SUPPORT YOUR PACKAGES. */
597+
&local_infile
599598
#ifdef HAVE_MYSQL_OPT_READ_TIMEOUT
600-
&read_timeout
599+
, &read_timeout
601600
#endif
602-
))
601+
))
603602
return -1;
604603

605604
#ifdef IS_PY3K

0 commit comments

Comments
 (0)