Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(666)

Unified Diff: testing_support/local_rietveld.py

Issue 13867008: Fix presubmit check with newer version of AppEngine SDK v1.7.6. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: testing_support/local_rietveld.py
diff --git a/testing_support/local_rietveld.py b/testing_support/local_rietveld.py
index d79eea8cf063af814f5ca31aac100f59e616e366..20aaa611e55e52457e40732154f1c58a65330d30 100755
--- a/testing_support/local_rietveld.py
+++ b/testing_support/local_rietveld.py
@@ -139,7 +139,10 @@ class LocalRietveld(object):
def stop_server(self):
if self.test_server:
- self.test_server.kill()
+ try:
+ self.test_server.kill()
+ except OSError:
+ pass
self.test_server.wait()
self.test_server = None
self.port = None
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698