raw_name = key for style (set into _reportdialog.py or specific categories), report_name = translated filename; need to test output into CLI mode
svn: r19324
This commit is contained in:
parent
2485af7689
commit
84d4d1acaf
@ -174,7 +174,7 @@ class DocReportDialog(ReportDialog):
|
||||
ext = ""
|
||||
else:
|
||||
spath = self.get_default_directory()
|
||||
base = "%s.%s" % (self.raw_name, ext)
|
||||
base = "%s.%s" % (self.report_name, ext)
|
||||
spath = os.path.normpath(os.path.join(spath, base))
|
||||
self.target_fileentry.set_filename(spath)
|
||||
|
||||
|
@ -165,7 +165,7 @@ class GraphvizReportDialog(ReportDialog):
|
||||
ext = ""
|
||||
else:
|
||||
spath = self.get_default_directory()
|
||||
base = "%s%s" % (self.raw_name, ext)
|
||||
base = "%s%s" % (self.report_name, ext)
|
||||
spath = os.path.normpath(os.path.join(spath, base))
|
||||
self.target_fileentry.set_filename(spath)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user