Comment 3 for bug 1529606

Revision history for this message
Bernd Dietzel (l-ubuntuone1104) wrote :

@Kenneth
quote() is a good idea. Think about python2 and python3.

try:
    from shlex import quote
except ImportError:
    from pipes import quote

Please do not forget to exchange the '%s' into %s in the backends so you get no double-quoting problems.

@edso
I hope that the user script does not request a new url automatically when the ftps server is full or offline ;-)

Thank you :-)