summaryrefslogtreecommitdiff
path: root/git-p4.py
diff options
context:
space:
mode:
authorBrandon Casey <drafnel@gmail.com>2013-01-26 19:14:32 (GMT)
committerJunio C Hamano <gitster@pobox.com>2013-01-27 03:00:03 (GMT)
commit598354c0ad4198daff279c34a96f42e4d91fb4e6 (patch)
tree02e6f8947cf8af3f89ee82172396765e1aab0c5c /git-p4.py
parent5d417842efeafb6e109db7574196901c4e95d273 (diff)
downloadgit-598354c0ad4198daff279c34a96f42e4d91fb4e6.zip
git-598354c0ad4198daff279c34a96f42e4d91fb4e6.tar.gz
git-598354c0ad4198daff279c34a96f42e4d91fb4e6.tar.bz2
git-p4.py: support Python 2.5
Python 2.5 and older do not accept None as the first argument to translate() and complain with: TypeError: expected a character buffer object As suggested by Pete Wyckoff, let's just replace the call to translate() with a regex search which should be more clear and more portable. This allows git-p4 to be used with Python 2.5. Signed-off-by: Brandon Casey <bcasey@nvidia.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-p4.py')
-rwxr-xr-xgit-p4.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/git-p4.py b/git-p4.py
index 551aec9..a041b49 100755
--- a/git-p4.py
+++ b/git-p4.py
@@ -742,7 +742,8 @@ def wildcard_encode(path):
return path
def wildcard_present(path):
- return path.translate(None, "*#@%") != path
+ m = re.search("[*#@%]", path)
+ return m is not None
class Command:
def __init__(self):