Skip to content

Commit

Permalink
string stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
sezanzeb committed Jan 19, 2025
1 parent 6d3b590 commit d56ddd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion evdev/uinput.py
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ def _verify(self):
m = os.stat(self.devnode)[stat.ST_MODE]
assert stat.S_ISCHR(m)
except (IndexError, OSError, AssertionError):
msg = '"{}" does not exist or is not a character device file ' "- verify that the uinput module is loaded"
msg = '"{}" does not exist or is not a character device file - verify that the uinput module is loaded'
raise UInputError(msg.format(self.devnode))

if not os.access(self.devnode, os.W_OK):
Expand Down

0 comments on commit d56ddd4

Please sign in to comment.