mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-03 12:11:25 -06:00
Remove redundant u'' character
One Python's unicode marking character was being printed by RPC plugin which then appeared in ipa-client-install output. This patch removes it.
This commit is contained in:
parent
fae658f505
commit
adc57707c0
@ -45,7 +45,7 @@ EXAMPLES:
|
||||
Ping an IPA server verbosely:
|
||||
ipa -v ping
|
||||
ipa: INFO: trying https://ipa.example.com/ipa/xml
|
||||
ipa: INFO: Forwarding 'ping' to server u'https://ipa.example.com/ipa/xml'
|
||||
ipa: INFO: Forwarding 'ping' to server 'https://ipa.example.com/ipa/xml'
|
||||
-----------------------------------------------------
|
||||
IPA server version 2.1.9. API version 2.20
|
||||
-----------------------------------------------------
|
||||
|
@ -697,7 +697,7 @@ class xmlclient(Connectible):
|
||||
'%s.forward(): %r not in api.Command' % (self.name, name)
|
||||
)
|
||||
server = getattr(context, 'request_url', None)
|
||||
self.info('Forwarding %r to server %r', name, server)
|
||||
self.info("Forwarding '%s' to server '%s'", name, server)
|
||||
command = getattr(self.conn, name)
|
||||
params = [args, kw]
|
||||
try:
|
||||
|
Loading…
Reference in New Issue
Block a user