diff --git a/TODO.txt b/TODO.txt index 7b51a932..5b05150f 100644 --- a/TODO.txt +++ b/TODO.txt @@ -1 +1,5 @@ +- [OUTPUT] Improve dot output: add title of URLs to nodes and edges - [INTERFACE] make a nice GUI for linkchecker + + QT GUI + + add debian .menu file + + test on Windows diff --git a/linkcheck/logger/dot.py b/linkcheck/logger/dot.py index 0e19ac12..041f04c7 100644 --- a/linkcheck/logger/dot.py +++ b/linkcheck/logger/dot.py @@ -65,7 +65,7 @@ class DOTLogger (Logger): def log_url (self, url_data): """ - Write one node and all possible edges. + Write one node. """ node = url_data if node.url and node.url not in self.nodes: @@ -134,3 +134,4 @@ def dotedge (s): s = s.replace("\H", "\\H") s = s.replace("\E", "\\E") return dotquote(s) +