Skip to content

Commit 1f1df3e

Browse files
author
Greg Denton
authored
Make sure that versions folder is included in Dockerfile (#255)
* Make sure that versions folder is included in Dockerfile * move versions directory into outline dir
1 parent 62f3c8d commit 1f1df3e

File tree

6 files changed

+3
-5
lines changed

6 files changed

+3
-5
lines changed

pyoutline/bin/cuerunbase.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
import sys
2020
import traceback
2121

22-
import versions
22+
from outline import versions
2323

2424

2525
logging.basicConfig()

pyoutline/outline/backend/cue.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,8 @@
2424

2525
import FileSequence
2626
import opencue
27-
import versions
2827

29-
from outline import config, util, OutlineException
28+
from outline import config, util, versions, OutlineException
3029
from outline.depend import DependType
3130

3231

pyoutline/outline/backend/local.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,9 @@
1515

1616
import sqlite3
1717
import subprocess
18-
import versions
1918

2019
from outline.manifest import FileSequence
21-
from outline import config, util
20+
from outline import config, util, versions
2221

2322

2423
def build_command(ol, layer, frame):

0 commit comments

Comments
 (0)