summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorGiampaolo Rodola <g.rodola@gmail.com>2011-04-17 23:06:36 +0000
committerGiampaolo Rodola <g.rodola@gmail.com>2011-04-17 23:06:36 +0000
commit92fa2ba908ce870442f9629f8d2784a7fd97660a (patch)
treeb5fe3930a119b8a8032eda31cd58ce897a7b4362 /test
parenta58fbe3af67eb4dbe97de935cc1a80672e9d43e0 (diff)
downloadpysendfile-92fa2ba908ce870442f9629f8d2784a7fd97660a.tar.gz
carriage return on print
Diffstat (limited to 'test')
-rw-r--r--test/test_sendfile.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_sendfile.py b/test/test_sendfile.py
index ca134e6..dd4fab1 100644
--- a/test/test_sendfile.py
+++ b/test/test_sendfile.py
@@ -385,12 +385,12 @@ class TestLargeFile(unittest.TestCase):
# synchronize by waiting for "220 ready" response
self.client.recv(1024)
self.sockno = self.client.fileno()
- sys.stdout.write("\ncreating file:")
+ sys.stdout.write("\ncreating file:\n")
sys.stdout.flush()
self.create_file()
self.file = open(TESTFN2, 'rb')
self.fileno = self.file.fileno()
- sys.stdout.write("\starting transfer:")
+ sys.stdout.write("\starting transfer:\n")
sys.stdout.flush()
def tearDown(self):