From 1e64786a376b8179a8af732b95b5197805c7e8da Mon Sep 17 00:00:00 2001 From: Deven Blake Date: Sun, 30 May 2021 17:47:17 -0400 Subject: [PATCH] content --- it/src/buffer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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