Unverified Commit bddefed1 authored by Serge S. Koval's avatar Serge S. Koval Committed by GitHub

Merge pull request #2058 from Maciejfiedler/master

Removed lowering the whole command in the rediscli.py
parents 5fe3ce4e a70535b9
...@@ -196,7 +196,7 @@ class RedisCli(BaseView): ...@@ -196,7 +196,7 @@ class RedisCli(BaseView):
AJAX API. AJAX API.
""" """
try: try:
cmd = request.form.get('cmd').lower() cmd = request.form.get('cmd')
if not cmd: if not cmd:
return self._error('Cli: Empty command.') return self._error('Cli: Empty command.')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment