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

Unified Diff: appengine/predator/analysis/crash_analyzer.py

Issue 2447253002: [Findit & Predator] Code reorg of Findit. (Closed)
Patch Set: Clean up. Created 4 years, 1 month 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
Index: appengine/predator/analysis/crash_analyzer.py
diff --git a/appengine/predator/analysis/crash_analyzer.py b/appengine/predator/analysis/crash_analyzer.py
new file mode 100644
index 0000000000000000000000000000000000000000..0afe7758be850bf6074a1debf8cc290de1fa8fb5
--- /dev/null
+++ b/appengine/predator/analysis/crash_analyzer.py
@@ -0,0 +1,8 @@
+from libs.http import retry_http_client
+from libs.gitiles import git
+
+def Analyze(*_, **__):
+ http_client = retry_http_client.RetryHttpClient()
+ git_client = git.Git(http_client)
+ git_client.GetChangeLog()
+ return 0

Powered by Google App Engine
This is Rietveld 408576698