Bug 1309932 - Allow wpt sync script to work with non-merge PRs, r=Ms2ger

MozReview-Commit-ID: DsrFzoBnfbp
This commit is contained in:
James Graham
2016-10-07 13:28:37 +01:00
parent 8622cfc387
commit 49901b952b
4 changed files with 31 additions and 24 deletions

View File

@@ -99,11 +99,11 @@ class WebPlatformTestsUpdater(MozbuildObject):
try:
update.run_update(logger, **kwargs)
except:
except Exception:
import pdb
import traceback
traceback.print_exc()
pdb.post_mortem()
# pdb.post_mortem()
class WebPlatformTestsReduce(WebPlatformTestsRunner):