Skip to content

Commit d9fe87a

Browse files
authored
Fix typo
1 parent d541485 commit d9fe87a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

aiomysql/sa/connection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def _execute(self, query, *multiparams, **params):
6969
cursor = yield from self._connection.cursor()
7070
dp = _distill_params(multiparams, params)
7171
if len(dp) > 1:
72-
raise exc.ArgumentError("aiopg doesn't support executemany")
72+
raise exc.ArgumentError("aiomysql doesn't support executemany")
7373
elif dp:
7474
dp = dp[0]
7575

0 commit comments

Comments
 (0)