Skip to content

Commit

Permalink
bugfix: safe-mode disable was missing
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabian Siegel committed Oct 6, 2020
1 parent 64f61d5 commit 1d18f28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pluploader/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ def safemode_enable(ctx: typer.Context):
sys.exit(1)


@app_safemode.command("enable")
@app_safemode.command("disable")
def safemode_disable(ctx: typer.Context, keep_state: bool = typer.Option(False)):
try:
success = upm.enable_disable_safemode(ctx.obj.get("base_url"), False, keep_state)
Expand Down

0 comments on commit 1d18f28

Please sign in to comment.