Package: duplicity
Version: 0.4.1-8

Some ISPs and shared hosting environments have usernames that contain
the @ symbol.  The current code does not allow for this situation.

In backends.py:


self.user = user_comps[0]
self.host = "@".join(user_comps[1:])

could be changed to:

self.host = user_comps[-1]
self.user="@".join(user_comps[0:-1])


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to