equal
deleted
inserted
replaced
433 |
433 |
434 This may be a no-op on some systems. |
434 This may be a no-op on some systems. |
435 """ |
435 """ |
436 raise NotImplementedError |
436 raise NotImplementedError |
437 |
437 |
438 def add(self, ui, match, dryrun, listsubrepos, prefix, explicitonly): |
438 def add(self, ui, match, prefix, explicitonly, **opts): |
439 return [] |
439 return [] |
440 |
440 |
441 def addremove(self, matcher, prefix, opts, dry_run, similarity): |
441 def addremove(self, matcher, prefix, opts, dry_run, similarity): |
442 self.ui.warn("%s: %s" % (prefix, _("addremove is not supported"))) |
442 self.ui.warn("%s: %s" % (prefix, _("addremove is not supported"))) |
443 return 1 |
443 return 1 |