- commit
- 7346f41ebc28314231cc9f199122139403e46c29
- parent
- 909dc01c126ef9c94cd8c242f6ebacf19f353c10
- Author
- Tobias Bengfort <tobias.bengfort@posteo.de>
- Date
- 2024-06-01 07:50
print to stderr
Diffstat
| M | xikeyring/dbus.py | 2 | +- |
1 files changed, 1 insertions, 1 deletions
diff --git a/xikeyring/dbus.py b/xikeyring/dbus.py
@@ -38,7 +38,7 @@ class BaseDBusService: 38 38 ) 39 39 40 40 def on_bus_acquired(self, conn, bus, user_data=None):41 -1 print(f'bus {bus} acquired')-1 41 print(f'bus {bus} acquired', file=sys.stderr) 42 42 43 43 def on_name_lost(self, conn, name, user_data=None): 44 44 sys.exit(f'Could not aquire name {name}. Is some other service blocking it?')