Fix error detection with git-p4 submit when the requested depot path is not in the client view.

Signed-off-by: Simon Hausmann <shausman@trolltech.com>
This commit is contained in:
Simon Hausmann 2007-05-21 09:34:56 +02:00
Родитель 33be3e6550
Коммит dc52403696
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -55,6 +55,8 @@ def p4Where(depotPath):
if not depotPath.endswith("/"):
depotPath += "/"
output = p4Cmd("where %s..." % depotPath)
if output["code"] == "error":
return ""
clientPath = ""
if "path" in output:
clientPath = output.get("path")