mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-04-16 20:31:01 +00:00
Fix saving of GUI results.
This commit is contained in:
parent
42e73b06f9
commit
422d4e9c6c
2 changed files with 10 additions and 2 deletions
|
|
@ -1,3 +1,10 @@
|
|||
7.4 "" (release xx.xx.2012)
|
||||
|
||||
Fixes:
|
||||
- gui: Fix saving of check results as a file.
|
||||
Closes: SF bug #3466545
|
||||
|
||||
|
||||
7.3 "Attack the block" (released 25.12.2011)
|
||||
|
||||
Fixes:
|
||||
|
|
@ -23,7 +30,7 @@ Features:
|
|||
- checking: Support parsing of Safari Bookmark files.
|
||||
|
||||
|
||||
7.2 "Driver" (released 20.10.2011)
|
||||
7.2 "Drive" (released 20.10.2011)
|
||||
|
||||
Fixes:
|
||||
- checking: HTML parser now correctly detects character encoding for
|
||||
|
|
|
|||
|
|
@ -33,10 +33,11 @@ FileExt2LogType = {
|
|||
|
||||
def urlsave (parent, config, urls):
|
||||
"""Save URL results in file."""
|
||||
filename, filetype = get_save_filename(parent)
|
||||
filename = get_save_filename(parent)
|
||||
if not filename:
|
||||
# user canceled
|
||||
return
|
||||
filename = unicode(filename)
|
||||
logtype = FileExt2LogType.get(os.path.splitext(filename)[1])
|
||||
if not logtype:
|
||||
return
|
||||
|
|
|
|||
Loading…
Reference in a new issue