Skip to content

Commit

Permalink
Fixed a bug introduced when with using action sync
Browse files Browse the repository at this point in the history
  • Loading branch information
keul committed Apr 30, 2024
1 parent 841f38d commit 44ad2ef
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ History
0.7.2 (unreleased)
------------------

- Nothing changed yet.
- Fixed a bug introduced when with using action sync


0.7.1 (2024-04-13)
Expand Down
6 changes: 5 additions & 1 deletion haunts/spreadsheet.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,11 @@ def get_calendars(sheet, ignore_alias=False, use_read_col=False):
configured_calendars = {}
for cols in values:
if not use_read_col:
id, alias = cols
try:
id, alias = cols
except ValueError:
# not required alias column
id, alias, _ = cols
read_from = None
else:
try:
Expand Down

0 comments on commit 44ad2ef

Please sign in to comment.