Skip to content

Commit 5372e70

Browse files
committed
v0.7.5
1 parent 9d1edf3 commit 5372e70

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# CHANGELOG
22

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+
39
## 0.7.4 (Packaging is fun and good for testing) - 2017-06-11
410

511
### Changed

i3configger/ipc.py

+4
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,10 @@ def get_config_error_report(cls, path):
5959
return subprocess.check_output(cmd).decode()
6060
except subprocess.CalledProcessError as e:
6161
return e.output
62+
except FileNotFoundError:
63+
assert path.exists(), path
64+
log.exception("can't create report - assuming test system")
65+
return ''
6266

6367

6468
class Notify:

0 commit comments

Comments
 (0)