Merge pull request #4 from wouterla/master
Fixed absolute paths for input files
This commit is contained in:
commit
5f2b1d93cc
1 changed files with 1 additions and 1 deletions
|
@ -48,7 +48,7 @@ def main():
|
||||||
faces = [_args.front, _args.back, _args.right, _args.left, _args.top, _args.bottom]
|
faces = [_args.front, _args.back, _args.right, _args.left, _args.top, _args.bottom]
|
||||||
for i in range(len(faces)):
|
for i in range(len(faces)):
|
||||||
face = faces[i]
|
face = faces[i]
|
||||||
face = faces if os.path.isabs(face) else os.path.join(os.getcwd(), face)
|
face = faces[i] if os.path.isabs(face) else os.path.join(os.getcwd(), face)
|
||||||
faces[i] = face
|
faces[i] = face
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Reference in a new issue