Skip to content

Commit 5d2d02a

Browse files
author
Tony Crisci
committed
Merge branch 'master' of github.com:acrisci/i3ipc-python
2 parents 8598962 + 51b8f02 commit 5d2d02a

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

MANIFEST.in

+6
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,8 @@
11
include README.rst LICENSE CHANGELOG.md pytest.ini requirements.txt .flake8 .style.yapf
2+
include Makefile
3+
include run-tests.py
24
recursive-include test *.py
5+
include test/i3.config
6+
recursive-include examples *.md
7+
recursive-include examples *.py
8+
recursive-include docs *.rst

examples/i3-cycle-focus.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def get_valid_windows(self):
4343
ws_list = []
4444
w_set = set()
4545
for item in self.i3.get_outputs():
46-
ws_list.append(item["current_workspace"])
46+
ws_list.append(item.current_workspace)
4747
for ws in tree.workspaces():
4848
if str(ws.num) in ws_list:
4949
for w in ws.leaves():

0 commit comments

Comments
 (0)