diff mercurial/commands.py @ 17849:6da47b655d97 stable

update: check for missing files with --check (issue3595)
author Matt Mackall <mpm@selenic.com>
date Mon, 22 Oct 2012 17:23:31 -0500
parents 66f0c78350ab
children 92ba3cd55be6
line wrap: on
line diff
--- a/mercurial/commands.py	Mon Oct 22 16:06:47 2012 -0500
+++ b/mercurial/commands.py	Mon Oct 22 17:23:31 2012 -0500
@@ -5894,7 +5894,7 @@
 
     if check:
         c = repo[None]
-        if c.dirty(merge=False, branch=False):
+        if c.dirty(merge=False, branch=False, missing=True):
             raise util.Abort(_("uncommitted local changes"))
         if rev is None:
             rev = repo[repo[None].branch()].rev()