Remove unnecessary code in Graphviz report dialog.

svn: r9518
This commit is contained in:
Brian Matherly 2007-12-16 04:47:09 +00:00
parent 0b5dd35b23
commit 3e9e629f56
2 changed files with 3 additions and 3 deletions

View File

@ -1,3 +1,6 @@
2007-12-15 Brian Matherly <brian@gramps-project.org>
* src/ReportBase/_GraphvizReportDialog.py: Remove unnecessary code.
2007-12-15 Brian Matherly <brian@gramps-project.org>
* src/plugins/FtmStyleAncestors.py
* src/plugins/DesGraph.py

View File

@ -411,9 +411,6 @@ class GVPdfDoc(GVDocBase):
dotfile.write(self.dot.getvalue())
dotfile.close()
# Generate a temporary PS file.
os.system( 'dot -Tps -o"%s" "%s"' % (self.filename,tmp_dot) )
# Create a temporary Postscript file
(handle,tmp_ps) = tempfile.mkstemp(".ps" )
os.close( handle )