Commit d63fa6f0 by Seth Vidal

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

parent 8afa3abd
......@@ -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):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment