Added "finished downloading" msg for tars

This commit is contained in:
Sebastian Lohff 2012-04-29 20:58:53 +02:00
parent 4c76137674
commit 3a06b0699d
1 changed files with 1 additions and 0 deletions

View File

@ -161,6 +161,7 @@ class TarFileHandler(FileBaseHandler):
block = tarCmd.stdout.read(self.blockSize) block = tarCmd.stdout.read(self.blockSize)
if block and block != '': if block and block != '':
self.wfile.write(block) self.wfile.write(block)
print "%s finished downloading" % (self.client_address[0])
def getCompressionCmd(self): def getCompressionCmd(self):
if self.compression == "none": if self.compression == "none":