Skip to content

Commit

Permalink
import console directly in otioview. (#505)
Browse files Browse the repository at this point in the history
  • Loading branch information
ssteinbach authored Apr 19, 2019
1 parent f13ecce commit 2709923
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions opentimelineview/console.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
from PySide2 import QtWidgets, QtGui

import opentimelineio as otio
import opentimelineio.console as otio_console
import opentimelineview as otioViewWidget
from opentimelineview import settings

Expand Down Expand Up @@ -250,16 +251,16 @@ def show(self):
def main():
args = _parsed_args()

media_linker_name = otio.console.console_utils.media_linker_name(
media_linker_name = otio_console.console_utils.media_linker_name(
args.media_linker
)

try:
read_adapter_arg_map = otio.console.console_utils.arg_list_to_map(
read_adapter_arg_map = otio_console.console_utils.arg_list_to_map(
args.adapter_arg,
"adapter"
)
media_linker_argument_map = otio.console.console_utils.arg_list_to_map(
media_linker_argument_map = otio_console.console_utils.arg_list_to_map(
args.media_linker_arg,
"media linker"
)
Expand Down

0 comments on commit 2709923

Please sign in to comment.