Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
asvetlov authored Aug 14, 2016
1 parent d541485 commit d9fe87a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aiomysql/sa/connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def _execute(self, query, *multiparams, **params):
cursor = yield from self._connection.cursor()
dp = _distill_params(multiparams, params)
if len(dp) > 1:
raise exc.ArgumentError("aiopg doesn't support executemany")
raise exc.ArgumentError("aiomysql doesn't support executemany")
elif dp:
dp = dp[0]

Expand Down

0 comments on commit d9fe87a

Please sign in to comment.