mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fixed Issue #3193
This commit is contained in:
parent
39aa5e5eac
commit
46ad4299a8
1 changed files with 1 additions and 1 deletions
|
@ -181,7 +181,7 @@ class Rhn(RegistrationBase):
|
|||
Returns: str
|
||||
'''
|
||||
url = urlparse.urlparse(self.config['serverURL'])
|
||||
return url.netloc.replace('xmlrpc.','')
|
||||
return url[1].replace('xmlrpc.','')
|
||||
|
||||
@property
|
||||
def systemid(self):
|
||||
|
|
Loading…
Reference in a new issue