Chromium Code Reviews| Index: breakpad.py |
| diff --git a/breakpad.py b/breakpad.py |
| index b7d52bb833ee913e75a62c7d38492dcdb463e07a..70e43ca6d4d3f5e8454be3f6a947f99a0999dd28 100644 |
| --- a/breakpad.py |
| +++ b/breakpad.py |
| @@ -74,8 +74,9 @@ def Register(): |
| # Skip unit tests and we don't want anything from non-googler. |
| if (not 'test' in sys.modules['__main__'].__file__ and |
| - socket.getfqdn().endswith('.google.com') and |
| - not 'NO_BREAKPAD' in os.environ): |
| + not 'NO_BREAKPAD' in os.environ and |
| + (socket.getfqdn().endswith('.google.com') or |
| + socket.getfqdn().endswith('.chromium.org'))): |
|
jochen (gone - plz use gerrit)
2010/10/27 11:21:20
nit indent one space less
|
| Register() |
| # Uncomment this line if you want to test it out. |