Don't throw an exception for files with only property changes.

R= maruel
See also: http://codereview.chromium.org/99317

git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@15157 0039d316-1c4b-4281-b951-d872f2087c98
experimental/szager/collated-output
mal@chromium.org 16 years ago
parent edd27d1770
commit 61c5fdf4e3

@ -136,14 +136,16 @@ def GetSVNStatus(file):
status_letter = {
'': ' ',
'unversioned': '?',
'modified': 'M',
'added': 'A',
'conflicted': 'C',
'deleted': 'D',
'ignored': 'I',
'missing': '!',
'modified': 'M',
'normal': ' ',
'replaced': 'R',
# TODO(maruel): Find the corresponding strings for X, !, ~
'unversioned': '?',
# TODO(maruel): Find the corresponding strings for X, ~
}
dom = ParseXML(RunShell(command))
results = []

Loading…
Cancel
Save