diff options
| author | Scott Gasch <[email protected]> | 2022-08-12 17:41:14 -0700 |
|---|---|---|
| committer | Scott Gasch <[email protected]> | 2022-08-12 17:41:14 -0700 |
| commit | 54b5493516c71cd8f5ac65a698c73c2adc629838 (patch) | |
| tree | 305f09708bd6d4ffb868b904a8e402eae02df32a | |
| parent | 3390bd2d689b547f11e021fc67c90c2a4204552f (diff) | |
Skip line about X11 forwarding in data read via ssh.
| -rwxr-xr-x | base_presence.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/base_presence.py b/base_presence.py index 6464e97..c4d61da 100755 --- a/base_presence.py +++ b/base_presence.py @@ -179,6 +179,8 @@ class PresenceDetection(object): cabin_count = 0 for line in lines: line = line.strip() + if 'using fake authentication data for X11' in line: + continue if len(line) == 0: continue logger.debug('%s> %s', location, line) |
