Write statistics when saving result files in the GUI.

This commit is contained in:
Bastian Kleineidam 2011-04-06 14:31:58 +02:00
parent 4b2f60a125
commit ef499d5cf2
2 changed files with 3 additions and 1 deletions

View file

@ -3,6 +3,7 @@
Fixes:
- gui: Fix display of warnings in property pane.
Closes: SF bug #3263974
- gui: Don't forget to write statistics when saving result files.
- doc: Added configuration file locations in HTML documentation.
- doc: Removed mentioning of old -s option from man page.
- logging: Only write configured output parts in CSV logger.

View file

@ -45,7 +45,8 @@ def urlsave (parent, config, urls):
logger = config.logger_new(logtype, **kwargs)
logger.start_output()
for urlitem in urls:
logger.log_url(urlitem.url_data)
do_print = True
logger.log_filter_url(urlitem.url_data, do_print)
logger.end_output()