Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Compare with latest when filename doesn't have a version #348

Merged
merged 1 commit into from
Jul 19, 2023
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
5 changes: 5 additions & 0 deletions at/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -403,6 +403,11 @@ def id_diff():
document_name = get_name(filename)
original_doc_name = get_name_with_revision(filename)

if original_doc_name == document_name:
# document doesn't have a revision in the file name
# compare with the latest
latest = True

if document_name is None:
logger.error('Can not determine draft name for {}'.format(
filename))
Expand Down
Loading
Loading