1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-05 17:23:15 +02:00

Remove unneeded spaces

This commit is contained in:
Sebastien Helleu
2011-02-07 18:38:47 +01:00
parent ef71f59b2e
commit d41e202d76
9 changed files with 11 additions and 11 deletions
+2 -2
View File
@@ -21,7 +21,7 @@
#
# weercd - the WeeChat flood IRC server
#
#
# weercd is an IRC server that is designed to test client resistance and memory
# usage (quickly detect memory leaks, for example with client scripts).
# Various IRC commands are sent in a short time (privmsg, notice, join/quit, ..)
@@ -123,7 +123,7 @@ def strrand(minlength=1, maxlength=50, spaces=False):
strspace = ''
if spaces:
strspace = ' '
return ''.join(random.choice(string.ascii_uppercase + string.ascii_lowercase + string.digits + strspace) for x in range(length))
return ''.join(random.choice(string.ascii_uppercase + string.ascii_lowercase + string.digits + strspace) for x in range(length))
class Client:
def __init__(self, sock, addr, **kwargs):