Skip to content

Commit

Permalink
temporary fix
Browse files Browse the repository at this point in the history
opt.skip_checks conflicts with django command option. need permanent fix.
  • Loading branch information
jsjiang committed Sep 14, 2023
1 parent a75e776 commit 546f65e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ezidapp/management/commands/shoulder-create-ark.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@ def handle(self, *_, **opt):
self.opt = opt = argparse.Namespace(**opt)
impl.nog.util.log_setup(__name__, opt.debug)

print(self.opt)

try:
return self._handle(self.opt)
except impl.nog.exc.MinterError as e:
Expand All @@ -78,7 +80,8 @@ def _handle(self, opt):
is_test=opt.is_test,
is_super_shoulder=opt.is_super_shoulder,
is_sharing_datacenter=False,
is_force=opt.is_force,
#is_force=opt.is_force,
is_force=opt.skip_checks,
is_debug=opt.debug,
)

Expand Down

0 comments on commit 546f65e

Please sign in to comment.