moving print outside of the file scope in text preview

workspace
km0 2 years ago
parent 82e525a28a
commit 8f8e988ac2

@ -59,11 +59,12 @@ class Soup(Bureau):
@add_command('tp', 'Print a short excerpt of a text')
def print_preview(self, data):
self.print_small('hello')
# filename, _ = data.split(".")
# with open(os.path.join(self.mdir, 'contents', filename + '.txt'), 'r') as f:
# text = f.read()
# self.print_small(filename + '\n' + text[:200] + '...')
filename, _ = data.split(".")
with open(os.path.join(self.mdir, 'contents', filename + '.txt'), 'r') as f:
text = f.read()
self.print_small(filename + '\n' + text[:200] + '...')
def main():

Loading…
Cancel
Save