From 3a06b0699d74ab1692757abcc22c0c5f3fc3f098 Mon Sep 17 00:00:00 2001 From: Sebastian Lohff Date: Sun, 29 Apr 2012 20:58:53 +0200 Subject: [PATCH] Added "finished downloading" msg for tars --- servefile | 1 + 1 file changed, 1 insertion(+) diff --git a/servefile b/servefile index 62170a4..3170eb0 100755 --- a/servefile +++ b/servefile @@ -161,6 +161,7 @@ class TarFileHandler(FileBaseHandler): block = tarCmd.stdout.read(self.blockSize) if block and block != '': self.wfile.write(block) + print "%s finished downloading" % (self.client_address[0]) def getCompressionCmd(self): if self.compression == "none":