summaryrefslogtreecommitdiff
path: root/pylint/graph.py
diff options
context:
space:
mode:
author谭九鼎 <109224573@qq.com>2020-06-11 14:25:03 +0800
committerGitHub <noreply@github.com>2020-06-11 08:25:03 +0200
commit201daa6f77a6ea2c630629cb7a944f341b46a454 (patch)
tree0a8c16577a684d8956ff7aac1f2f60346b590606 /pylint/graph.py
parent2a883cbc4361603c720addae6d9420e8a156e313 (diff)
downloadpylint-git-201daa6f77a6ea2c630629cb7a944f341b46a454.tar.gz
Chore: use https links (#3679)
Diffstat (limited to 'pylint/graph.py')
-rw-r--r--pylint/graph.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pylint/graph.py b/pylint/graph.py
index 856b6170d..823713e61 100644
--- a/pylint/graph.py
+++ b/pylint/graph.py
@@ -131,7 +131,7 @@ class DotBackend:
def emit_edge(self, name1, name2, **props):
"""emit an edge from <name1> to <name2>.
- edge properties: see http://www.graphviz.org/doc/info/attrs.html
+ edge properties: see https://www.graphviz.org/doc/info/attrs.html
"""
attrs = ['%s="%s"' % (prop, value) for prop, value in props.items()]
n_from, n_to = normalize_node_id(name1), normalize_node_id(name2)
@@ -139,7 +139,7 @@ class DotBackend:
def emit_node(self, name, **props):
"""emit a node with given properties.
- node properties: see http://www.graphviz.org/doc/info/attrs.html
+ node properties: see https://www.graphviz.org/doc/info/attrs.html
"""
attrs = ['%s="%s"' % (prop, value) for prop, value in props.items()]
self.emit("%s [%s];" % (normalize_node_id(name), ", ".join(sorted(attrs))))