This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Oleg Krasnikov
Recipients Oleg Krasnikov
Date 2017-11-02.08:37:20
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1509611840.93.0.213398074469.issue31920@psf.upfronthosting.co.za>
In-reply-to
Content
This happens because pygettext's `getFilesForName` calls `os.walk` as if it was `os.path.walk`. But the `walk` function has changed signature when moved from `os.path` to `os`. So now `_visit_pyfiles` is passed to `walk` as `topdown` argument which is obviously wrong and therefore `_visit_pyfiles` is never called.
History
Date User Action Args
2017-11-02 08:37:20Oleg Krasnikovsetrecipients: + Oleg Krasnikov
2017-11-02 08:37:20Oleg Krasnikovsetmessageid: <1509611840.93.0.213398074469.issue31920@psf.upfronthosting.co.za>
2017-11-02 08:37:20Oleg Krasnikovlinkissue31920 messages
2017-11-02 08:37:20Oleg Krasnikovcreate