diff hgext/mq.py @ 12875:b59b5193d4d0 stable

mq: qrename should not touch the dirstate if src is untracked (issue2460)
author Patrick Mezard <pmezard@gmail.com>
date Thu, 28 Oct 2010 22:04:33 +0200
parents 62b334b0dfdf
children 1634287b6ab1
line wrap: on
line diff
--- a/hgext/mq.py	Thu Oct 28 21:25:53 2010 +0200
+++ b/hgext/mq.py	Thu Oct 28 22:04:33 2010 +0200
@@ -2400,7 +2400,7 @@
         os.makedirs(destdir)
     util.rename(q.join(patch), absdest)
     r = q.qrepo()
-    if r:
+    if r and patch in r.dirstate:
         wctx = r[None]
         wlock = r.wlock()
         try: