Skip to content

Commit

Permalink
Merge pull request #28 from gabn88/patch-1
Browse files Browse the repository at this point in the history
Update admin.py
  • Loading branch information
ionelmc committed Jan 18, 2017
2 parents 7fa5267 + 61f507a commit 341e74f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/redisboard/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def slowlog(self, obj):
command = log['command']

if len(command) > 255:
command = command[:252] + '...'
command = str(command[:252]) + '...'

output.append((
log['duration'],
Expand Down

0 comments on commit 341e74f

Please sign in to comment.