Skip to content
Snippets Groups Projects
Commit 1e39863e authored by Yann Leboulanger's avatar Yann Leboulanger
Browse files

rename some var

parent 045a74c7
No related branches found
No related tags found
No related merge requests found
......@@ -254,12 +254,11 @@ class SvgChooserDialog(FileChooserDialog):
'''
check if file exists and call callback
'''
path_to_clientcert_file = self.get_filename()
path_to_clientcert_file = \
gtkgui_helpers.decode_filechooser_file_paths(
(path_to_clientcert_file,))[0]
path_to_file = self.get_filename()
path_to_file = gtkgui_helpers.decode_filechooser_file_paths(
(path_to_file,))[0]
widget.destroy()
callback(path_to_clientcert_file)
callback(path_to_file)
FileChooserDialog.__init__(self,
title_text=_('Save Image as...'),
......@@ -412,9 +411,9 @@ class SVGObject():
del self.items[rid]
def export_svg(self, filename):
file = open(filename, 'w')
file.writelines(str(self.svg))
file.close()
f = open(filename, 'w')
f.writelines(str(self.svg))
f.close()
def item_button_press_events(self, item, target_item, event):
self.del_item(item)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment