@@ -95,21 +95,21 @@ def __init__(self, parent):
9595
9696 Label (frame , text = '' ).grid (row = 0 , column = 0 , sticky = 'W' )
9797 Label (frame , text = 'Contact:' ).grid (row = 1 , column = 0 , sticky = 'W' , padx = 10 )
98- Label (
frame ,
text = 'Stef Smeets ([email protected] ) ').
grid (
row = 1 ,
column = 1 ,
sticky = 'W' )
98+ Label (frame , text = f' { instamatic . __author__ } ( { instamatic . __author_email__ } ' ).grid (row = 1 , column = 1 , sticky = 'W' )
9999 Label (frame , text = '' ).grid (row = 5 , column = 0 , sticky = 'W' )
100100
101101 Label (frame , text = 'Source code:' ).grid (row = 10 , column = 0 , sticky = 'W' , padx = 10 )
102102 link = Link_Button (frame , text = instamatic .__url__ , action = self .link_github )
103103 link .grid (row = 10 , column = 1 , sticky = 'W' )
104104 Label (frame , text = '' ).grid (row = 12 , column = 0 , sticky = 'W' )
105105
106- Label (frame , text = 'Manual :' ).grid (row = 20 , column = 0 , sticky = 'W' , padx = 10 )
107- link = Link_Button (frame , text = instamatic .__url__ + '/docs' , action = self .link_github )
106+ Label (frame , text = 'Docs :' ).grid (row = 20 , column = 0 , sticky = 'W' , padx = 10 )
107+ link = Link_Button (frame , text = instamatic .__docs__ , action = self .link_github )
108108 link .grid (row = 20 , column = 1 , sticky = 'W' )
109109 Label (frame , text = '' ).grid (row = 22 , column = 0 , sticky = 'W' )
110110
111111 Label (frame , text = 'Bugs:' ).grid (row = 30 , column = 0 , sticky = 'W' , padx = 10 )
112- link = Link_Button (frame , text = instamatic .__url__ + '/issues' , action = self .link_github )
112+ link = Link_Button (frame , text = instamatic .__issues__ , action = self .link_github )
113113 link .grid (row = 30 , column = 1 , sticky = 'W' )
114114 Label (frame , text = '' ).grid (row = 32 , column = 0 , sticky = 'W' )
115115
0 commit comments