Submitter | phabricator |
---|---|
Date | Nov. 22, 2019, 2:51 a.m. |
Message ID | <e8a7c8db122a21f4687e4a026ccee32b@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/43402/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/mercurial/phases.py b/mercurial/phases.py --- a/mercurial/phases.py +++ b/mercurial/phases.py @@ -134,7 +134,7 @@ public, draft, secret = range(3) internal = INTERNAL_FLAG | HIDEABLE_FLAG archived = HIDEABLE_FLAG -allphases = range(internal + 1) +allphases = list(range(internal + 1)) trackedphases = allphases[1:] # record phase names cmdphasenames = [b'public', b'draft', b'secret'] # known to `hg phase` command