Mercurial > hg-stable
diff hgext/journal.py @ 32331:bd872f64a8ba
cleanup: use set literals
We no longer support Python 2.6, so we can now use set literals.
author | Martin von Zweigbergk <martinvonz@google.com> |
---|---|
date | Fri, 10 Feb 2017 16:56:29 -0800 |
parents | 809fa1d7eb99 |
children | 46ba2cdda476 |
line wrap: on
line diff
--- a/hgext/journal.py Sat May 06 04:51:25 2017 +0530 +++ b/hgext/journal.py Fri Feb 10 16:56:29 2017 -0800 @@ -158,7 +158,7 @@ util.safehasattr(repo, 'journal')): sharedrepo = share._getsrcrepo(repo) sharedfeatures = _readsharedfeatures(repo) - if sharedrepo and sharedfeatures > set(['journal']): + if sharedrepo and sharedfeatures > {'journal'}: # there is a shared repository and there are shared journal entries # to copy. move shared date over from source to destination but # move the local file first