[tor-commits] [gettor/master] Fixed format of message constructed by core
ilv at torproject.org
ilv at torproject.org
Tue Nov 3 19:31:31 UTC 2015
commit ce352ebdbe15d02f838fccd50a26723238a164aa
Author: ilv <ilv at users.noreply.github.com>
Date: Sat Oct 31 15:05:05 2015 -0300
Fixed format of message constructed by core
---
gettor/core.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gettor/core.py b/gettor/core.py
index 49fbbb2..6336e04 100644
--- a/gettor/core.py
+++ b/gettor/core.py
@@ -290,7 +290,7 @@ class Core(object):
all_links.append(msg)
- msg = "\n\n\nTor Browser's signature %s-bit (in the same order):" %\
+ msg = "\n\n\nTor Browser's signature %s-bit:" %\
arch
for link in links32:
msg = "%s\n%s" % (msg, links32[link])
@@ -300,7 +300,7 @@ class Core(object):
if osys == 'linux':
msg = "\n\n\nTor Browser's signature 64-bit:"
for link in links64:
- msg = "%s\n%s" % (msg, links64[link])
+ msg = "%s%s" % (msg, links64[link])
all_links.append(msg)
More information about the tor-commits
mailing list