fix ResourceWarnings
This commit is contained in:
parent
6f89a119ae
commit
785f8098b6
1 changed files with 12 additions and 4 deletions
|
@ -1270,7 +1270,9 @@ class AboutDialog:
|
||||||
dlg.set_copyright(s)
|
dlg.set_copyright(s)
|
||||||
copying_file_path = self.get_path('COPYING')
|
copying_file_path = self.get_path('COPYING')
|
||||||
if copying_file_path:
|
if copying_file_path:
|
||||||
text = open(copying_file_path).read()
|
fp = open(copying_file_path)
|
||||||
|
text = fp.read()
|
||||||
|
fp.close()
|
||||||
dlg.set_license(text)
|
dlg.set_license(text)
|
||||||
|
|
||||||
gtk_ver = '%i.%i.%i' % (Gtk.get_major_version(),
|
gtk_ver = '%i.%i.%i' % (Gtk.get_major_version(),
|
||||||
|
@ -1283,7 +1285,9 @@ class AboutDialog:
|
||||||
authors_file_path = self.get_path('AUTHORS')
|
authors_file_path = self.get_path('AUTHORS')
|
||||||
if authors_file_path:
|
if authors_file_path:
|
||||||
authors = []
|
authors = []
|
||||||
authors_file = open(authors_file_path).read()
|
fp = open(authors_file_path)
|
||||||
|
authors_file = fp.read()
|
||||||
|
fp.close()
|
||||||
authors_file = authors_file.split('\n')
|
authors_file = authors_file.split('\n')
|
||||||
for author in authors_file:
|
for author in authors_file:
|
||||||
if author == 'CURRENT DEVELOPERS:':
|
if author == 'CURRENT DEVELOPERS:':
|
||||||
|
@ -1297,7 +1301,9 @@ class AboutDialog:
|
||||||
if thanks_file_path:
|
if thanks_file_path:
|
||||||
authors.append('\n' + _('THANKS:'))
|
authors.append('\n' + _('THANKS:'))
|
||||||
|
|
||||||
text = open(thanks_file_path).read()
|
fp = open(thanks_file_path)
|
||||||
|
text = fp.read()
|
||||||
|
fp.close()
|
||||||
text_splitted = text.split('\n')
|
text_splitted = text.split('\n')
|
||||||
text = '\n'.join(text_splitted[:-2]) # remove one english sentence
|
text = '\n'.join(text_splitted[:-2]) # remove one english sentence
|
||||||
# and add it manually as translatable
|
# and add it manually as translatable
|
||||||
|
@ -1317,7 +1323,9 @@ class AboutDialog:
|
||||||
|
|
||||||
thanks_artists_file_path = self.get_path('THANKS.artists')
|
thanks_artists_file_path = self.get_path('THANKS.artists')
|
||||||
if thanks_artists_file_path:
|
if thanks_artists_file_path:
|
||||||
artists_text = open(thanks_artists_file_path).read()
|
fp = open(thanks_artists_file_path)
|
||||||
|
artists_text = fp.read()
|
||||||
|
fp.close()
|
||||||
artists = artists_text.split('\n')
|
artists = artists_text.split('\n')
|
||||||
dlg.set_artists(artists)
|
dlg.set_artists(artists)
|
||||||
# connect close button to destroy() function
|
# connect close button to destroy() function
|
||||||
|
|
Loading…
Add table
Reference in a new issue