Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
I had to change a few lines in
i3-workspace-names-daemon
to get it running in my i3 environment.ac94f27 Fixes an issue with the 2.x versions of i3ipc.
The
WorkspaceReply
class is not a dict anymore, causing "TypeError: 'WorkspaceReply' object is not subscriptable". I added the getattr() function, which will work with both flavours of theWorkspaceReply
class.85a4306 adds the u'' prefix to string literals. I had a usecase with Python2 and this was required to get it running. I know that Python2 is deprecated and i3ipc only supports Py2 up to 1.7.1, but as it only takes a few prefixes to keep it functional, it's maybe worth it.