Changes between Initial Version and Version 1 of Ticket #34020, comment 1


Ignore:
Timestamp:
Sep 16, 2022, 6:54:00 PM (22 months ago)
Author:
Simon Charette

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #34020, comment 1

    initial v1  
    1 Traceback can clearly points at the `self.stdout.write(pprint.pprint(urls))` call being the origin of the issue.
     1Traceback clearly points at the `self.stdout.write(pprint.pprint(urls))` call being the origin of the issue.
    22
    33`pprint.pprint` [https://docs.python.org/3/library/pprint.html?highlight=pprint#pprint.pprint returns] `None`, `self.stdout.write` expects a string, and the error messages clears state `'NoneType' object has no attribute 'endswith'`.
Back to Top