diff --git a/it/src/buffer.py b/it/src/buffer.py index 8a6a4d2..11533e8 100755 --- a/it/src/buffer.py +++ b/it/src/buffer.py @@ -12,7 +12,7 @@ class Buffer: # all the information about the current file # Rather than get the content as it's presented in the buffer object # (as one big string), get it as a list. def content_list(self): - return self.split(self.delimiter) + return self.content.split(self.delimiter) # Build a string with the same format as the buffer.content and set the # buffer.content to that string, from the kind of list output by