Skip to content

Commit aa7e06a

Browse files
committed
removed extra print
1 parent c886b95 commit aa7e06a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cosypose/libmesh/meshlab_converter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def run_meshlab_script(in_path, out_path, script, cd_dir=None, has_textures=True
2727
if has_textures:
2828
command += ['wt', 'vt']
2929
command += ['-s', script_path.as_posix()]
30-
print(('-'*40) + '\n' + ' '.join(command) + '\n' + ('-'*40))
30+
print(' '.join(command) + '\n')
3131
os.system(' '.join(command))
3232
script_path.unlink()
3333
return

0 commit comments

Comments
 (0)