File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ python-systemd
22===============
33
44Python module for native access to the systemd facilities. Functionality
5- is seperated into a number of modules:
5+ is separated into a number of modules:
66- systemd.journal supports sending of structured messages to the journal
77 and reading journal files,
88- systemd.daemon wraps parts of libsystemd useful for writing daemons
Original file line number Diff line number Diff line change @@ -95,15 +95,15 @@ def is_mq_wrapper(arg):
9595 try :
9696 return is_mq (arg )
9797 except OSError as error :
98- # systemd < 227 compatiblity
98+ # systemd < 227 compatibility
9999 assert error .errno == errno .EBADF
100100 return False
101101
102102def _is_mq_wrapper (arg ):
103103 try :
104104 return _is_mq (arg )
105105 except OSError as error :
106- # systemd < 227 compatiblity
106+ # systemd < 227 compatibility
107107 assert error .errno == errno .EBADF
108108 return False
109109
You can’t perform that action at this time.
0 commit comments