From patchwork Tue Feb 19 06:14:00 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: D5982: narrow: fix command name in error messsage From: phabricator X-Patchwork-Id: 38820 Message-Id: <820775fd5ee90f51f71614f03d070ac3@localhost.localdomain> To: mercurial-devel@mercurial-scm.org Date: Tue, 19 Feb 2019 06:14:00 +0000 This revision was automatically updated to reflect the committed changes. Closed by commit rHGebbc4e70ebd1: narrow: fix command name in error messsage (authored by pulkit, committed by ). REPOSITORY rHG Mercurial CHANGES SINCE LAST UPDATE https://phab.mercurial-scm.org/D5982?vs=14140&id=14141 REVISION DETAIL https://phab.mercurial-scm.org/D5982 AFFECTED FILES hgext/narrow/narrowcommands.py tests/test-narrow-trackedcmd.t CHANGE DETAILS To: pulkit, durin42, martinvonz, #hg-reviewers Cc: mercurial-devel diff --git a/tests/test-narrow-trackedcmd.t b/tests/test-narrow-trackedcmd.t --- a/tests/test-narrow-trackedcmd.t +++ b/tests/test-narrow-trackedcmd.t @@ -218,3 +218,13 @@ adding file changes added 3 changesets with 0 changes to 0 files new changesets *:* (glob) + + $ cd .. + +Testing tracked command on a non-narrow repo + + $ hg init non-narrow + $ cd non-narrow + $ hg tracked --addinclude foobar + abort: the tracked command is only supported on respositories cloned with --narrow + [255] diff --git a/hgext/narrow/narrowcommands.py b/hgext/narrow/narrowcommands.py --- a/hgext/narrow/narrowcommands.py +++ b/hgext/narrow/narrowcommands.py @@ -348,7 +348,7 @@ """ opts = pycompat.byteskwargs(opts) if repository.NARROW_REQUIREMENT not in repo.requirements: - raise error.Abort(_('the narrow command is only supported on ' + raise error.Abort(_('the tracked command is only supported on ' 'respositories cloned with --narrow')) # Before supporting, decide whether it "hg tracked --clear" should mean