diff --git a/screenless/bureau/soup/soup.py b/screenless/bureau/soup/soup.py index 51510f8..92eb033 100644 --- a/screenless/bureau/soup/soup.py +++ b/screenless/bureau/soup/soup.py @@ -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():