Pete Wyckoff <pw@xxxxxxxx> writes: > 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) Shouldn't it say "p4 describe -s"? > details["time"] = newestTime > > self.updateOptionDict(details) -- 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