diff mercurial/cmdutil.py @ 7404:07cb58b8c843

Improved error message for log --follow Mads Kiilerich notes that the existing message was unclear when a nonexistent file was supplied.
author Brendan Cully <brendan@kublai.com>
date Mon, 24 Nov 2008 17:16:39 -0800
parents 87158be081b8
children 9a1ea6587557
line wrap: on
line diff
--- a/mercurial/cmdutil.py	Tue Nov 25 01:22:43 2008 +0100
+++ b/mercurial/cmdutil.py	Mon Nov 24 17:16:39 2008 -0800
@@ -1033,6 +1033,8 @@
                 if node is None:
                     # A zero count may be a directory or deleted file, so
                     # try to find matching entries on the slow path.
+                    if follow:
+                        raise util.Abort(_('cannot follow nonexistent file: "%s"') % file_)
                     slowpath = True
                     break
                 else: