chiark
/
gitweb
/
~mdw
/
tripe
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (from parent 1:
19bf6ea
)
svc/connect.in: Squash newlines to spaces in `info' output.
1.0.0pre19.x
author
Mark Wooding
<mdw@distorted.org.uk>
Mon, 25 May 2020 15:29:45 +0000
(16:29 +0100)
committer
Mark Wooding
<mdw@distorted.org.uk>
Mon, 25 May 2020 15:29:45 +0000
(16:29 +0100)
Otherwise all sorts of things go horribly wrong.
svc/connect.in
patch
|
blob
|
blame
|
history
diff --git
a/svc/connect.in
b/svc/connect.in
index 047139678a9904ef805ebb1b75e764693233701f..78da325216461dfdf19834b0c3bb6488508b517e 100644
(file)
--- a/
svc/connect.in
+++ b/
svc/connect.in
@@
-756,7
+756,7
@@
def cmd_info(name):
items = list(peer.list())
items.sort()
for i in items:
items = list(peer.list())
items.sort()
for i in items:
- T.svcinfo('%s=%s' % (i, peer.get(i)))
+ T.svcinfo('%s=%s' % (i, peer.get(i)
.replace('\n', ' ')
))
def cmd_userpeer(user):
"""
def cmd_userpeer(user):
"""