[gettor/master] Indent links (#17424)

commit fafda21febe9f982ff5fa58896366d002d342713 Author: ilv <ilv@users.noreply.github.com> Date: Tue Feb 16 17:46:09 2016 -0300 Indent links (#17424) --- gettor/core.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gettor/core.py b/gettor/core.py index 97f7ce3..a12853b 100644 --- a/gettor/core.py +++ b/gettor/core.py @@ -253,16 +253,16 @@ class Core(object): t32, t64 = [t for t in providers[pname].split(",") if t] link, signature, chs32 = [l for l in t32.split("$") if l] - link = "%s: %s" % (pname, link) + link = " %s: %s" % (pname, link) links32[link] = signature link, signature, chs64 = [l for l in t64.split("$") if l] - link = "%s: %s" % (pname, link.lstrip()) + link = " %s: %s" % (pname, link.lstrip()) links64[link] = signature else: link, signature, chs32 = [l for l in providers[pname].split("$") if l] - link = "%s: %s" % (pname, link) + link = " %s: %s" % (pname, link) links32[link] = signature #providers[pname] = providers[pname].replace(",", "")
participants (1)
-
ilv@torproject.org