Skip to content

Commit

Permalink
allow build info to include an '@'
Browse files Browse the repository at this point in the history
  • Loading branch information
ca-johnson committed Jul 26, 2019
1 parent 6eb4aa7 commit fd5c8bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/checkout.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ def main():

repo.unshelve(changelist)

revision = get_build_revision().strip('@')
description = repo.description(get_users_changelist() or revision)
revision = get_build_revision()
description = repo.description(get_users_changelist() or revision.strip('@'))
set_build_info(revision, description)


Expand Down

0 comments on commit fd5c8bd

Please sign in to comment.