git p4: handle files with wildcards when doing RCS scrubbing
[gitweb.git] / git-p4.py
index a4414b58b9e6e313d0789994a42b31ccabecf085..26b874fec969959d51df083d86b286df173e19c5 100755 (executable)
--- a/git-p4.py
+++ b/git-p4.py
@@ -310,8 +310,8 @@ def split_p4_type(p4type):
 #
 # return the raw p4 type of a file (text, text+ko, etc)
 #
-def p4_type(file):
-    results = p4CmdList(["fstat", "-T", "headType", file])
+def p4_type(f):
+    results = p4CmdList(["fstat", "-T", "headType", wildcard_encode(f)])
     return results[0]['headType']
 
 #