Send download message to stderr also

This commit is contained in:
Christopher Teutsch 2020-07-24 09:28:44 +02:00
parent 4abcd9617f
commit 0bd02abed6

View File

@ -119,7 +119,7 @@ def get_results_from_pdf(buf: BinaryIO or str, currency: str = None) -> Currency
def get_fileio(date: DTDate, card_type: List[str] = CARD_VISA) -> BinaryIO: # pylint: disable=dangerous-default-value
# pylint: disable=no-member # mechanize.Browser has some lazy-loading methods that pylint doesn't see
print('Downloading rates for ' + date.strftime('%Y-%m-%d') + '... ', end='')
print('Downloading rates for ' + date.strftime('%Y-%m-%d') + '... ', end='', file=stderr)
b = m.Browser()
# Firefox 64 User-Agent
# ua = 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:64.0) Gecko/20100101 Firefox/64.0'