This commit is contained in:
Андрей Владимирович 2016-03-17 19:28:52 +03:00
parent 90cabe1a45
commit 33290216df
2 changed files with 2 additions and 1 deletions

View file

@ -33,6 +33,7 @@ class ReceiveTransfer(FileTransfer):
def __init__(self, path, tox, friend_number):
super(self.__class__, self).__init__(path, tox, friend_number)
self._file = open(self._path, 'wb')
self._file.truncate(0)
def write_chunk(self, position, data):
if data is not None: