3
0
mirror of https://git.kernel.org/pub/scm/network/wireless/iwd.git synced 2024-11-23 07:29:28 +01:00

test: log correct function name

Matched the printed function name with the actual function name.

The simple-agent test prints the function name to allow easier debugging.

One name was not set currectly (most likely through copy pasting).
This commit is contained in:
Sertonix Norson 2023-09-19 11:51:29 +00:00 committed by Denis Kenzior
parent dfb76edda8
commit f780f73f75

View File

@ -54,7 +54,7 @@ class Agent(dbus.service.Object):
in_signature='o', in_signature='o',
out_signature='ss') out_signature='ss')
def RequestUserNameAndPassword(self, path): def RequestUserNameAndPassword(self, path):
print("RequestPrivateKeyPassphrase (%s)" % (path)) print("RequestUserNameAndPassword (%s)" % (path))
print("Service credentials requested, type cancel to cancel") print("Service credentials requested, type cancel to cancel")
user = input('User name: ') user = input('User name: ')