[Nym3-commit] r101 - trunk
nym3-devel@lists.noreply.org
nym3-devel@lists.noreply.org
Fri, 06 Aug 2004 00:19:29 +0200
Author: laurent
Date: 2004-08-06 00:19:28 +0200 (Fri, 06 Aug 2004)
New Revision: 101
Modified:
trunk/Message.py
Log:
Forgot line continuation.
Modified: trunk/Message.py
===================================================================
--- trunk/Message.py 2004-08-05 22:18:39 UTC (rev 100)
+++ trunk/Message.py 2004-08-05 22:19:28 UTC (rev 101)
@@ -785,7 +785,7 @@
def __str__(self):
"""Give the string of the Command that would be sent in a control message"""
- s = intToStrBE(self.nMsg, 4) + intToStrBE(self.nSurb, 2) +
+ s = intToStrBE(self.nMsg, 4) + intToStrBE(self.nSurb, 2) +\
intToStrBE(self.quota, 4) + intToStrBE(self.used, 4)
for i in range(len(self.acks)):
s = s + self.acks[i]