1
0
This commit is contained in:
Deven Blake 2021-05-30 17:47:17 -04:00
parent 69184fc79a
commit 1e64786a37

View File

@ -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 # Rather than get the content as it's presented in the buffer object
# (as one big string), get it as a list. # (as one big string), get it as a list.
def content_list(self): 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 # 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 # buffer.content to that string, from the kind of list output by