Skip to content

Commit 59cd435

Browse files
committed
Fix log handling in Command class for correct log production output
1 parent b4e0312 commit 59cd435

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/iop/_cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,9 +144,9 @@ def _handle_migrate(self) -> None:
144144

145145
def _handle_log(self) -> None:
146146
if self.args.log == 'not_set':
147-
print(_Director.log_production_top())
147+
print(_Director.log_production())
148148
else:
149-
print(_Director.log_production(self.args.log))
149+
print(_Director.log_production_top(self.args.log))
150150

151151
def _handle_init(self) -> None:
152152
_Utils.setup(None)

0 commit comments

Comments
 (0)