Remove period character from file format string as it is already supplied by get_ext()
svn: r12789
This commit is contained in:
parent
e1095908ef
commit
aa5fce63a7
@ -1091,7 +1091,7 @@ class GraphvizReportDialog(ReportDialog):
|
|||||||
ext = ""
|
ext = ""
|
||||||
else:
|
else:
|
||||||
spath = self.get_default_directory()
|
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))
|
spath = os.path.normpath(os.path.join(spath, base))
|
||||||
self.target_fileentry.set_filename(spath)
|
self.target_fileentry.set_filename(spath)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user