Added "finished downloading" msg for tars
This commit is contained in:
parent
4c76137674
commit
3a06b0699d
|
@ -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":
|
||||||
|
|
Loading…
Reference in New Issue