Mercurial > public > mercurial-scm > hg-stable
diff mercurial/localrepo.py @ 5258:b534c502bfb3
Turn capabilities into a mutable set, instead of a fixed tuple.
author | Bryan O'Sullivan <bos@serpentine.com> |
---|---|
date | Mon, 27 Aug 2007 14:16:04 -0700 |
parents | 0d28d4e5fe1f |
children | a0229e4e4b73 |
line wrap: on
line diff
--- a/mercurial/localrepo.py Mon Aug 27 13:38:34 2007 -0700 +++ b/mercurial/localrepo.py Mon Aug 27 14:16:04 2007 -0700 @@ -13,7 +13,7 @@ import os, revlog, time, util, extensions, hook class localrepository(repo.repository): - capabilities = ('lookup', 'changegroupsubset') + capabilities = util.set(('lookup', 'changegroupsubset')) supported = ('revlogv1', 'store') def __init__(self, parentui, path=None, create=0):