Skip to content

Commit

Permalink
Merge pull request pallets-eco#2058 from Maciejfiedler/master
Browse files Browse the repository at this point in the history
Removed lowering the whole command in the rediscli.py
  • Loading branch information
mrjoes authored Nov 25, 2020
2 parents 5fe3ce4 + a70535b commit bddefed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flask_admin/contrib/rediscli.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ def execute_view(self):
AJAX API.
"""
try:
cmd = request.form.get('cmd').lower()
cmd = request.form.get('cmd')
if not cmd:
return self._error('Cli: Empty command.')

Expand Down

0 comments on commit bddefed

Please sign in to comment.