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 serhiy.storchaka
Recipients cool-RR, pitrou, serhiy.storchaka
Date 2016-11-27.10:09:11
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1480241351.54.0.390463132153.issue28811@psf.upfronthosting.co.za>
In-reply-to
Content
This will break any code that pass str(path) to API that doesn't support pathlib.

In your case you can introduce a short alias:

    q = shlex.quote
    ssh_client.run(f'/bin/rm {q(str(path))}')

Or add more convenient helper:

    def q(path):
        return shlex.quote(str(path))

    ssh_client.run(f'/bin/rm {q(path)}')
History
Date User Action Args
2016-11-27 10:09:11serhiy.storchakasetrecipients: + serhiy.storchaka, pitrou, cool-RR
2016-11-27 10:09:11serhiy.storchakasetmessageid: <1480241351.54.0.390463132153.issue28811@psf.upfronthosting.co.za>
2016-11-27 10:09:11serhiy.storchakalinkissue28811 messages
2016-11-27 10:09:11serhiy.storchakacreate