We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d1edf3 commit 5372e70Copy full SHA for 5372e70
CHANGELOG.md
@@ -1,5 +1,11 @@
1
# CHANGELOG
2
3
+## 0.7.5 (Time to make an -git AUR?) - 2017-06-11
4
+
5
+### Changed
6
7
+- make checks more forgiving if no i3 is installed - for testing a complete run after a PKGBUILD
8
9
## 0.7.4 (Packaging is fun and good for testing) - 2017-06-11
10
11
### Changed
i3configger/ipc.py
@@ -59,6 +59,10 @@ def get_config_error_report(cls, path):
59
return subprocess.check_output(cmd).decode()
60
except subprocess.CalledProcessError as e:
61
return e.output
62
+ except FileNotFoundError:
63
+ assert path.exists(), path
64
+ log.exception("can't create report - assuming test system")
65
+ return ''
66
67
68
class Notify:
0 commit comments