| Index: tools/telemetry/telemetry/page/actions/play.py
|
| diff --git a/tools/telemetry/telemetry/page/actions/play.py b/tools/telemetry/telemetry/page/actions/play.py
|
| index 3f673711a4fae44fc9489f5930fbb2a024842605..9fdf90563eb373f38078dbac6b50c046bb191aad 100644
|
| --- a/tools/telemetry/telemetry/page/actions/play.py
|
| +++ b/tools/telemetry/telemetry/page/actions/play.py
|
| @@ -12,12 +12,12 @@ Other attributes to use are: wait_for_playing and wait_for_ended, which forces
|
| the action to wait until playing and ended events get fired respectively.
|
| """
|
|
|
| -from telemetry.page.actions.media_action import MediaAction
|
| from telemetry.core import exceptions
|
| +from telemetry.page.actions import media_action
|
| from telemetry.page.actions import page_action
|
|
|
|
|
| -class PlayAction(MediaAction):
|
| +class PlayAction(media_action.MediaAction):
|
| def __init__(self, attributes=None):
|
| super(PlayAction, self).__init__(attributes)
|
|
|
|
|