1
0
mirror of https://github.com/dkmstr/openuds.git synced 2025-02-03 13:47:14 +03:00

Merge remote-tracking branch 'origin/v1.9'

This commit is contained in:
Adolfo Gómez García 2016-02-09 12:53:10 +01:00
commit ec93e5c9cc
3 changed files with 2 additions and 3 deletions

View File

@ -2,7 +2,6 @@
Name=UDSClient
Comment=UDS Helper
Keywords=uds;client;vdi;
OnlyShowIn=GNOME;Unity;
Exec=/usr/lib/UDSClient/UDSClient.py %u
Icon=help-browser
StartupNotify=true

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 += '@'