| Index: slave/skia_slave_scripts/webpages_playback.py
|
| diff --git a/slave/skia_slave_scripts/webpages_playback.py b/slave/skia_slave_scripts/webpages_playback.py
|
| index c61b0226b08ff0737999ed181a953b32045b13cc..385fa14d640ee7e27f39fa29f2c641f6ccd1f7bf 100644
|
| --- a/slave/skia_slave_scripts/webpages_playback.py
|
| +++ b/slave/skia_slave_scripts/webpages_playback.py
|
| @@ -58,17 +58,20 @@ import time
|
| import traceback
|
|
|
|
|
| -from utils import misc
|
| # Set the PYTHONPATH for this script to include chromium_buildbot scripts,
|
| # and site_config.
|
| -sys.path.append(os.path.join(misc.BUILDBOT_PATH, 'third_party',
|
| - 'chromium_buildbot', 'scripts'))
|
| -sys.path.append(os.path.join(misc.BUILDBOT_PATH, 'third_party',
|
| - 'chromium_buildbot', 'site_config'))
|
| +BUILDBOT_PATH = os.path.realpath(os.path.join(
|
| + os.path.dirname(os.path.abspath(__file__)), os.pardir, os.pardir))
|
| +sys.path.append(os.path.join(BUILDBOT_PATH, 'common'))
|
| +sys.path.append(os.path.join(BUILDBOT_PATH, 'third_party', 'chromium_buildbot',
|
| + 'scripts'))
|
| +sys.path.append(os.path.join(BUILDBOT_PATH, 'third_party', 'chromium_buildbot',
|
| + 'site_config'))
|
|
|
| from utils import file_utils
|
| from utils import gs_utils
|
| -from utils import shell_utils
|
| +from py.utils import misc
|
| +from py.utils import shell_utils
|
|
|
| from slave import slave_utils
|
|
|
|
|