Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions baph/core/cache/backends/memcached.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ def send_command(self, cmd, row_len=0, expect=None):
while line:
# readline splits on '\r\n', we still need to split on '\n'
item, sep, line = line.partition('\n')
item = item.strip()
if item == 'END':
return lines
else:
Expand Down