Skip to content

Commit

Permalink
correct format string, update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
joente committed Feb 2, 2024
1 parent 8a47c74 commit fda7e6e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
* The `new_backup()` and `new_token()` functions no longer accept `int`, `float` or `str` as time.
_(This was marked as deprecated since v0.10.1)_
* Added set operators `<=`, `<`, `>=`, `>` for subset, proper subset, superset and proper superset checking.
* Added range support for UTF8 definition.
* Added range `<..>` support for UTF8 type property definitions.

# v1.4.16

Expand Down
1 change: 1 addition & 0 deletions grammar/grammar.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
RE_NAME = r'^[A-Za-z_][0-9A-Za-z_]{0,254}(?![0-9A-Za-z_])'
STRICT = 0


class Choice(Choice_):
def __init__(self, *args, most_greedy=None, **kwargs):
if most_greedy is None:
Expand Down
2 changes: 1 addition & 1 deletion src/ti/collection.c
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ int ti_collection_check_empty(ti_collection_t * collection, ex_t * e)
else if (collection->vtasks->n)
ex_set(e, EX_OPERATION, "%s collection contains tasks", pf);
else if (collection->root->ref > 1)
ex_set(e, EX_OPERATION, "collection is being used", pf);
ex_set(e, EX_OPERATION, "collection is being used");

return e->nr;
}
Expand Down

0 comments on commit fda7e6e

Please sign in to comment.