| Index: tools/skp/webpages_playback.py
|
| diff --git a/tools/skp/webpages_playback.py b/tools/skp/webpages_playback.py
|
| index 67bb198e50d1f683168bfc97e2eeb5f96873982b..1320a8614c5a63065a11cb67147d887a572874c4 100644
|
| --- a/tools/skp/webpages_playback.py
|
| +++ b/tools/skp/webpages_playback.py
|
| @@ -102,7 +102,7 @@ RETRY_RECORD_WPR_COUNT = 5
|
| RETRY_RUN_MEASUREMENT_COUNT = 5
|
|
|
| # Location of the credentials.json file in Google Storage.
|
| -CREDENTIALS_GS_PATH = '/playback/credentials/credentials.json'
|
| +CREDENTIALS_GS_PATH = 'playback/credentials/credentials.json'
|
|
|
| X11_DISPLAY = os.getenv('DISPLAY', ':0')
|
|
|
| @@ -480,7 +480,7 @@ class GoogleStorageDataStore(DataStore):
|
| 'gsutil', 'ls', '/'.join((self._url, name))])
|
| except subprocess.CalledProcessError:
|
| return False
|
| - if len(output.splitlines) != 1:
|
| + if len(output.splitlines()) != 1:
|
| return False
|
| return True
|
|
|
|
|