make --limit take a , as a separator as well as ; or :

This commit is contained in:
Seth Vidal 2012-10-22 21:24:25 -04:00
parent 8afa3abd41
commit d63fa6f026

View file

@ -331,6 +331,7 @@ class Inventory(object):
if subset_pattern is None:
self._subset = None
else:
subset_pattern = subset_pattern.replace(',',':')
self._subset = subset_pattern.replace(";",":").split(":")
def lift_restriction(self):