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

Side by Side Diff: appengine/findit/util_scripts/__init__.py

Issue 2435863003: [Findit] Add local git parsers. (Closed)
Patch Set: Rebase. 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 unified diff | Download patch
« no previous file with comments | « no previous file | appengine/findit/util_scripts/crash_queries/crash_iterator.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 import os
6 import sys
7
8
9 _THIS_DIR = os.path.dirname(os.path.realpath(__file__))
10
11 # TODO(katesonia): Figure out why os.getenv('APPLICATION_ID') always return
12 # True for local unittest.
13 #
14 # The util_scripts/ are stand-alone local scripts and all those local
15 # scripts and utils under it should be imported starting from util_scripts/.
16 # For all the other modules of predator, imports starts from findit/ root dir.
17 sys.path.insert(0, _THIS_DIR)
OLDNEW
« no previous file with comments | « no previous file | appengine/findit/util_scripts/crash_queries/crash_iterator.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698