Skip to content

Commit 8ff60b4

Browse files
author
George K. Thiruvathukal
committed
update to fix Tatsu precendence change in regex
1 parent 9ae81b8 commit 8ff60b4

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ jobs:
88
runs-on: ubuntu-18.04
99
steps:
1010
- uses: actions/checkout@master
11-
- name: Set up Python 3.7
11+
- name: Set up Python 3.10
1212
uses: actions/setup-python@v1
1313
with:
14-
python-version: 3.7
14+
python-version: 3.10
1515
- name: Install pypa/build
1616
run: >-
1717
python -m

zettelgeist/zdb.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,7 @@ def get(db_name):
208208
;
209209
210210
literal
211-
= word:/\w+|"(\s+|\w+)*"/
211+
= word:/"(\s+|\w+)*"/
212+
| word:/\w+/
212213
;
213214
"""

0 commit comments

Comments
 (0)