# HG changeset patch # User Benoit Boissinot # Date 2006-08-29 17:02:57 # Node ID ea2a9c13afc65de475012924e9d75c985d767049 # Parent aebc3f64b20f3f8e67a79f14dd0e864dbf8d7119 Add a hint for revert --all when aborting diff --git a/mercurial/commands.py b/mercurial/commands.py --- a/mercurial/commands.py +++ b/mercurial/commands.py @@ -2291,7 +2291,8 @@ def revert(ui, repo, *pats, **opts): """ if not pats and not opts['all']: - raise util.Abort(_('no files or directories specified')) + raise util.Abort(_('no files or directories specified; ' + 'use --all to revert the whole repo')) parent, p2 = repo.dirstate.parents() if opts['rev']: diff --git a/tests/test-revert.out b/tests/test-revert.out --- a/tests/test-revert.out +++ b/tests/test-revert.out @@ -55,7 +55,7 @@ executable adding a 1 files updated, 0 files merged, 0 files removed, 0 files unresolved % should fail - no arguments -abort: no files or directories specified +abort: no files or directories specified; use --all to revert the whole repo % should succeed reverting a %% issue332