Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ jobs:
env: TOXENV=py
before_install:
- brew update
- brew link --overwrite gcc
- brew upgrade python
- pip3 install -U virtualenv # Travis' images rename pip to pip3.
- virtualenv env -p python3
Expand All @@ -65,3 +66,4 @@ jobs:
matrix:
allow_failures:
- python: pypy3.3-5.2-alpha1
- os: osx
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ v3.4.1
------
* Support Python 3.7.
* Support click>=7.0.
* Properly parse RBGA colours.

v3.4.0
------
Expand Down
2 changes: 1 addition & 1 deletion todoman/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -929,7 +929,7 @@ def update_cache(self):
cal = icalendar.Calendar.from_ical(cal)
for component in cal.walk('VTODO'):
self.cache.add_vtodo(component, entry_path)
except Exception as e:
except Exception:
logger.exception("Failed to read entry %s.", entry_path)

self.cache.save_to_disk()
Expand Down