Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions git-p4.py
Original file line number Diff line number Diff line change
Expand Up @@ -2340,6 +2340,10 @@ def importChanges(self, changes):
cnt = 1
for change in changes:
description = p4Cmd(["describe", str(change)])
if 'code' in description and description['code'] == 'error':
sys.stderr.write("p4 returned an error for change %d: %s\n"
% (change, description['data']))
continue
self.updateOptionDict(description)

if not self.silent:
Expand Down