1
0
mirror of https://github.com/dkmstr/openuds.git synced 2025-01-24 02:04:09 +03:00

Fixed CoRD on mac with a domain

This commit is contained in:
Adolfo Gómez García 2016-02-08 09:33:56 +01:00
parent 6eb5a7ccc8
commit c41648748a
2 changed files with 2 additions and 2 deletions

View File

@ -85,7 +85,7 @@ else: # CoRD
username, domain = '{m.username}', '{m.domain}'
if username != '':
url += username
url += urllib.quote(username)
if '{m.password}' != '':
url += ':' + urllib.quote('{m.password}')
url += '@'

View File

@ -94,7 +94,7 @@ else:
username, domain = '{m.username}', '{m.domain}'
if username != '':
url += username
url += urllib.quote(username)
if '{m.password}' != '':
url += ':' + urllib.quote('{m.password}')
url += '@'