Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Babalion committed Oct 23, 2024
1 parent c7911ae commit f7693db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: setup python
uses: actions/setup-python@v4
with:
python-version: '3.11' # use stable python version
python-version: '3.13' # use latest python version

- name: install python packages
run: |
Expand Down
2 changes: 1 addition & 1 deletion zotero-to-html.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def format_item(item):
except KeyError:
warnings.warn(f'No pages for {item["data"]["title"]}')

html_item += f'({item["data"]["date"].split('-')[0]})'
html_item += f'({item["data"]["date"].split("-")[0]})'
html_item += "</a></strong></li>\n"
return html_item

Expand Down

0 comments on commit f7693db

Please sign in to comment.