Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions dbus_next/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,8 @@ def _authentication_start(self, negotiate_unix_fd=False) -> str:
def _receive_line(self, line: str) -> str:
response, args = _AuthResponse.parse(line)

if response == _AuthResponse.DATA:
return 'DATA'
if response != _AuthResponse.OK:
raise AuthError(f'authentication failed: {response.value}: {args}')

Expand Down