Addresses #5364 urllib quote role names
This commit is contained in:
parent
2a9fd98f41
commit
a14d1ca485
1 changed files with 3 additions and 0 deletions
|
@ -29,6 +29,7 @@ import shutil
|
||||||
import sys
|
import sys
|
||||||
import tarfile
|
import tarfile
|
||||||
import tempfile
|
import tempfile
|
||||||
|
import urllib
|
||||||
import urllib2
|
import urllib2
|
||||||
import yaml
|
import yaml
|
||||||
|
|
||||||
|
@ -203,6 +204,8 @@ def api_lookup_role_by_name(api_server, role_name):
|
||||||
Uses the Galaxy API to do a lookup on the role owner/name.
|
Uses the Galaxy API to do a lookup on the role owner/name.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
role_name = urllib.quote(role_name)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
user_name,role_name = role_name.split(".", 1)
|
user_name,role_name = role_name.split(".", 1)
|
||||||
except:
|
except:
|
||||||
|
|
Loading…
Reference in a new issue