Skip to content
This repository has been archived by the owner on Feb 21, 2023. It is now read-only.

Commit

Permalink
hmset_dict fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
popravich committed Nov 2, 2016
1 parent 6c7ba46 commit d031d4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aioredis/commands/hash.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def hmset_dict(self, key, *args, **kwargs):
raise ValueError("args[0] is empty dict")
pairs = chain.from_iterable(args[0].items())
kwargs_pairs = chain.from_iterable(kwargs.items())
return wait_ok(self._conn.execute(
return wait_ok(self.execute(
b'HMSET', key, *chain(pairs, kwargs_pairs)))

def hset(self, key, field, value):
Expand Down

0 comments on commit d031d4c

Please sign in to comment.