From 8bd6a16cf06bb729c50d3c7026cb1fd4048efa3b Mon Sep 17 00:00:00 2001 From: Peter Landgren Date: Fri, 8 Oct 2010 13:53:49 +0000 Subject: [PATCH] Some conversions are not needed for gramps on win with non latin username. svn: r15958 --- src/ReportBase/_GraphvizReportDialog.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/ReportBase/_GraphvizReportDialog.py b/src/ReportBase/_GraphvizReportDialog.py index a094344eb..774ac6705 100644 --- a/src/ReportBase/_GraphvizReportDialog.py +++ b/src/ReportBase/_GraphvizReportDialog.py @@ -462,7 +462,7 @@ class GVPsDoc(GVDocBase): os.remove(tmp_dot) if self.open_req: - open_file_with_default_application(fname) + open_file_with_default_application(self._filename) #------------------------------------------------------------------------------- # @@ -510,7 +510,7 @@ class GVSvgDoc(GVDocBase): os.remove(tmp_dot) if self.open_req: - open_file_with_default_application(fname) + open_file_with_default_application(self._filename) #------------------------------------------------------------------------------- # @@ -558,7 +558,7 @@ class GVSvgzDoc(GVDocBase): os.remove(tmp_dot) if self.open_req: - open_file_with_default_application(fname) + open_file_with_default_application(self._filename) #------------------------------------------------------------------------------- # @@ -606,7 +606,7 @@ class GVPngDoc(GVDocBase): os.remove(tmp_dot) if self.open_req: - open_file_with_default_application(fname) + open_file_with_default_application(self._filename) #------------------------------------------------------------------------------- # @@ -754,7 +754,7 @@ class GVPdfGvDoc(GVDocBase): os.remove(tmp_dot) if self.open_req: - open_file_with_default_application(fname) + open_file_with_default_application(self._filename) #------------------------------------------------------------------------------- # @@ -823,7 +823,7 @@ class GVPdfGsDoc(GVDocBase): os.remove(tmp_dot) if self.open_req: - open_file_with_default_application(fname) + open_file_with_default_application(self._filename) #------------------------------------------------------------------------------- #