Commit 14433065 authored by ibuler's avatar ibuler

Merge branch 'dev' of github.com:jumpserver/coco into dev

parents e6270001 ffecf21c
......@@ -43,7 +43,7 @@ class SizedList(list):
return False
def append(self, b):
if not self.is_full():
if not self.is_full() and b:
super(SizedList, self).append(b)
self.size += len(b)
self.end_with_ascii = b[-1] <= 126
......
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