Remove period character from file format string as it is already supplied by get_ext()

svn: r12789
This commit is contained in:
Gary Burton 2009-07-11 19:37:15 +00:00
parent e1095908ef
commit aa5fce63a7

View File

@ -1091,7 +1091,7 @@ class GraphvizReportDialog(ReportDialog):
ext = ""
else:
spath = self.get_default_directory()
base = "%s.%s" % (self.raw_name, ext)
base = "%s%s" % (self.raw_name, ext)
spath = os.path.normpath(os.path.join(spath, base))
self.target_fileentry.set_filename(spath)