Update of /cvsroot/cvs-syncmail/syncmail/tests
In directory sc8-pr-cvs1:/tmp/cvs-serv15893
Modified Files:
Tag: new-config-branch
unittest.py
Log Message:
Fix typo introduced when making this module compatible with Python
1.5.2.
Index: unittest.py
===================================================================
RCS file: /cvsroot/cvs-syncmail/syncmail/tests/Attic/unittest.py,v
retrieving revision 1.1.2.2
retrieving revision 1.1.2.3
diff -u -d -r1.1.2.2 -r1.1.2.3
--- unittest.py 11 Jul 2003 04:39:29 -0000 1.1.2.2
+++ unittest.py 11 Jul 2003 04:59:04 -0000 1.1.2.3
@@ -562,7 +562,7 @@
return getattr(self.stream,attr)
def writeln(self, arg=None):
- if args is not None: self.write(arg)
+ if arg is not None: self.write(arg)
self.write('\n') # text-mode streams translate to \r\n if needed
|