summaryrefslogtreecommitdiffstats
path: root/PRESUBMIT.py
diff options
context:
space:
mode:
authormaruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-02-21 21:08:53 +0000
committermaruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-02-21 21:08:53 +0000
commit79ed7e6194037c37d09e311758bcd45b5d49c469 (patch)
tree119887eb51685c3c5da15c5d07b9cd7d34876536 /PRESUBMIT.py
parent0ee9a9d4d265400c75f433b5c5ce08b01b5b62f0 (diff)
downloadchromium_src-79ed7e6194037c37d09e311758bcd45b5d49c469.zip
chromium_src-79ed7e6194037c37d09e311758bcd45b5d49c469.tar.gz
chromium_src-79ed7e6194037c37d09e311758bcd45b5d49c469.tar.bz2
Make the ~/.subversion/config check a notice instead of an error.
It's less important now that all contributors suffered from it. Also, it's very painful for people working on other projects that don't use the same default settings. TEST=none BUG=none Review URL: http://codereview.chromium.org/6529017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75561 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'PRESUBMIT.py')
-rw-r--r--PRESUBMIT.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/PRESUBMIT.py b/PRESUBMIT.py
index 3bf616b..2cfb37f 100644
--- a/PRESUBMIT.py
+++ b/PRESUBMIT.py
@@ -101,13 +101,13 @@ def _CheckSubversionConfig(input_api, output_api):
not '*.pdf = svn:mime-type=application/pdf' in lines or
not 'enable-auto-props = yes' in lines):
return [
- output_api.PresubmitError(
+ output_api.PresubmitNotifyResult(
'It looks like you have not configured your subversion config '
'file or it is not up-to-date.\n' + error_msg)
]
except (OSError, IOError):
return [
- output_api.PresubmitError(
+ output_api.PresubmitNotifyResult(
'Can\'t find your subversion config file.\n' + error_msg)
]
return []