mercurial/commands.py
changeset 1634 f49f602fae92
parent 1633 94c179a92f4a
child 1637 3b1b44b917f4
--- a/mercurial/commands.py	Tue Jan 24 13:57:09 2006 +1300
+++ b/mercurial/commands.py	Tue Jan 24 13:59:01 2006 +1300
@@ -804,7 +804,8 @@
 
     def okaytocopy(abs, rel, exact):
         reasons = {'?': _('is not managed'),
-                   'a': _('has been marked for add')}
+                   'a': _('has been marked for add'),
+                   'r': _('has been marked for remove')}
         reason = reasons.get(repo.dirstate.state(abs))
         if reason:
             if exact: