Mercurial > hg-stable
changeset 24489:0f6594b0a4e2
import-checker: drop set() from cyclekey()
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Fri, 27 Mar 2015 19:27:19 -0500 |
parents | 4b3fc46097f7 |
children | fb4639d5268e |
files | contrib/import-checker.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/contrib/import-checker.py Fri Mar 27 19:25:40 2015 -0500 +++ b/contrib/import-checker.py Fri Mar 27 19:27:19 2015 -0500 @@ -164,7 +164,7 @@ def cyclekey(names): - return tuple(sorted((names))) + return tuple(sorted(names)) def check_one_mod(mod, imports, path=None, ignore=None): if path is None: