Skip to content

Commit 54f4f99

Browse files
committed
Fix syntax error
1 parent dfb85a2 commit 54f4f99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mockredis/script.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def _call(*call_args):
6868
def _error_reply(err):
6969
return self._python_to_lua({'err': err})
7070

71-
lua_globals.redis = {'call': _call, 'error_reply', _error_reply}
71+
lua_globals.redis = {'call': _call, 'error_reply': _error_reply}
7272
return self._lua_to_python(lua.execute(self.script), return_status=True)
7373

7474
@staticmethod

0 commit comments

Comments
 (0)