Rename response_handler to responsehandler

This commit is contained in:
2021-03-28 03:00:53 +02:00
parent 7ecfedbec7
commit b42c17c420
2 changed files with 2 additions and 2 deletions

View File

@@ -226,8 +226,8 @@ class GetCommand(AbstractCommand):
"""
msg = self._get_preamble(client)
from client import response_handler
self.filename = response_handler.handle(client, msg, self, self.dir)
from client import responsehandler
self.filename = responsehandler.handle(client, msg, self, self.dir)
class PostCommand(AbstractWithBodyCommand):