changeset 25760:648323f41a89

merge with stable
author Matt Mackall <mpm@selenic.com>
date Wed, 08 Jul 2015 16:43:49 -0500
parents ff11c1565c04 (current diff) 501c51d60792 (diff)
children 0d37b9b21467
files hgext/convert/p4.py
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/hgext/convert/p4.py	Wed Jul 08 17:07:45 2015 +0900
+++ b/hgext/convert/p4.py	Wed Jul 08 16:43:49 2015 -0500
@@ -210,7 +210,8 @@
                 raise IOError(d["generic"], data)
 
             elif code == "stat":
-                if d.get("action") == "purge":
+                action = d.get("action")
+                if action in ["purge", "delete", "move/delete"]:
                     return None, None
                 p4type = self.re_type.match(d["type"])
                 if p4type: