Skip to content

Commit

Permalink
Add program version to license textbox
Browse files Browse the repository at this point in the history
  • Loading branch information
EthanChappel committed Nov 2, 2020
1 parent de81a14 commit da32057
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion __main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ def __init__(self, master, *args, **kwargs):
self.licenses_text = tk.Text(self.licenses_frame, wrap=tk.WORD, borderwidth=0, highlightthickness=0, font=('Courier New', 9))
self.licenses_text.grid(row=0, column=0, padx=(2, 0), pady=(2, 2), sticky=tk.NSEW)

self.licenses_content = f'{NAME}\n{__version__}\n{pathlib.Path("LICENSE").read_text()}\n'
self.licenses_content = f'{NAME}\n{__version__}\n{pathlib.Path("LICENSE").read_text()}'
with open('dep-terms.json', 'r') as f:
j = json.load(f)

Expand Down

0 comments on commit da32057

Please sign in to comment.