Closed slinnarsson closed 7 years ago
For some reason, python's flags expect you to pass -r True
. If I ever figure out why, I'll fix it, but for now that's a workaround.
I think the argument needs to be added with the action="store_true"
flag, as in:
parser.add_argument('--debug', action="store_true")
Ah, so that's how it works! Implemented and pushed to server, just pull and rebuild, then this should to the trick:
loom expand -tmar [filename]
Remember that tiling requires manual removal of old tiles (for now)
So this is fixed, will continue in other issue.
Doing
loom expand -r <filename>
fails because the-r
flag actually expects an argument, and therefore eats up the filename:Workaround is to use a dummy extra argument:
A side effect of this bug is that you can't do
loom expand -marc <filename>
.