Skip to content
Snippets Groups Projects
Commit c27a3767 authored by Matt Mackall's avatar Matt Mackall
Browse files

p4: accept changesets with no description (issue4282)

parent e250a482
No related branches found
No related tags found
No related merge requests found
......@@ -108,7 +108,7 @@
cmd = "p4 -G describe -s %s" % change
stdout = util.popen(cmd, mode='rb')
d = marshal.load(stdout)
desc = self.recode(d["desc"])
desc = self.recode(d.get("desc", ""))
shortdesc = desc.split("\n", 1)[0]
t = '%s %s' % (d["change"], repr(shortdesc)[1:-1])
ui.status(util.ellipsis(t, 80) + '\n')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment