Skip to content

Commit

Permalink
Bring in actual 1.5.0 changes: bundled file + displaying it.
Browse files Browse the repository at this point in the history
  • Loading branch information
tmontes committed Jul 22, 2021
1 parent 177e165 commit f9eae46
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/puppy/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,10 @@ def main():
window = _create_window()
log_lines = _add_widgets(window)

hello_txt_path = ilr.files(__package__) / 'hello.txt'
with open(hello_txt_path, 'rt') as hello_file:
log_lines(hello_file.readlines())

log_lines([
'os.getcwd():',
f' {os.getcwd()!r}',
Expand Down
1 change: 1 addition & 0 deletions src/puppy/hello.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Hello there!

0 comments on commit f9eae46

Please sign in to comment.