From 6dee49357d793f0112ad806a480b53f2c2d1e627 Mon Sep 17 00:00:00 2001 From: Jakub Roztocil Date: Mon, 24 Jun 2019 12:29:42 +0200 Subject: [PATCH] Fix comments --- httpie/downloads.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/httpie/downloads.py b/httpie/downloads.py index 200dfb84..9f4c761f 100644 --- a/httpie/downloads.py +++ b/httpie/downloads.py @@ -248,7 +248,7 @@ class Downloader(object): self._output_file = self._get_output_file_from_response( final_response) else: - # `--continue, -c` provided + # `--output, -o` provided if self._resume and final_response.status_code == PARTIAL_CONTENT: total_size = parse_content_range( final_response.headers.get('Content-Range'),