| Index: appengine/findit/util_scripts/script_util.py
|
| diff --git a/appengine/findit/util_scripts/script_util.py b/appengine/findit/util_scripts/script_util.py
|
| index f87229f50cd8d7373464e5980d10074a9828b05d..e487a40a53c2c17d31c3703cebbf4c570cc55779 100644
|
| --- a/appengine/findit/util_scripts/script_util.py
|
| +++ b/appengine/findit/util_scripts/script_util.py
|
| @@ -44,7 +44,7 @@ SetUpSystemPaths()
|
| # The lib is in predator/ root dir, and can be imported only when sys.path gets
|
| # set up.
|
| from lib.cache_decorator import Cached
|
| -from local_cache import LocalCacher # pylint: disable=W
|
| +from local_cache import LocalCache # pylint: disable=W
|
|
|
|
|
| def SignalWorkerThreads(): # pragma: no cover
|
| @@ -125,7 +125,7 @@ def RunTasks(tasks): # pragma: no cover
|
| result_semaphore.acquire()
|
|
|
|
|
| -@Cached(namespace='Command-output', cacher=LocalCacher())
|
| +@Cached(namespace='Command-output', cache=LocalCache())
|
| def GetCommandOutput(command): # pragma: no cover
|
| """Gets the output stream of executable command.
|
|
|
|
|