The output was a bit nonsensical, including a bare %d. Fix it to make it easier to understand. Signed-off-by: Pete Wyckoff <pw@xxxxxxxx> --- git-p4.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/git-p4.py b/git-p4.py index eef5c94..d7ee4b4 100755 --- a/git-p4.py +++ b/git-p4.py @@ -2679,7 +2679,8 @@ class P4Sync(Command, P4UserMap): if r.has_key('time'): newestTime = int(r['time']) if newestTime is None: - die("\"describe -s\" on newest change %d did not give a time") + die("Output from \"describe -s\" on newest change %d did not give a time" % + newestRevision) details["time"] = newestTime self.updateOptionDict(details) -- 1.7.12.1.403.g28165e1 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html