Remove unnecessary notes.

This commit is contained in:
Yuxin Wang 2018-10-09 16:31:39 -04:00
parent 9e98cc3d31
commit bf7941c386

View file

@ -102,7 +102,7 @@ class Peer(MessageServer):
# request for file list # request for file list
file_list = await self.list_file() file_list = await self.list_file()
if file not in file_list: if file not in file_list:
return False, 'Requested file {} does not exist, try list_file?'.format(file) return False, 'Requested file {} does not exist.'.format(file)
await self._write_message(self._tracker_writer, { await self._write_message(self._tracker_writer, {
'type': MessageType.REQUEST_FILE_LOCATION, 'type': MessageType.REQUEST_FILE_LOCATION,