diff --git a/CHANGELOG.md b/CHANGELOG.md index bca0588..edb25e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,9 @@ Note: Breaking changes between versions are indicated by "💥". ## Unreleased +- [Bugfix] Fix "TypeError: upgrade() got an unexpected keyword argument 'non_interactive'" during `local upgrade`. + + ## v13.1.7 (2022-03-17) - [Bugfix] Fix dockerize on arm64 by switching to the [powerman/dockerize](https://github.com/powerman/dockerize) fork (#591). diff --git a/tutor/commands/local.py b/tutor/commands/local.py index 58a0b23..cd4c668 100644 --- a/tutor/commands/local.py +++ b/tutor/commands/local.py @@ -80,7 +80,6 @@ Are you sure you want to continue?""" context.invoke( upgrade, from_release=run_upgrade_from_release, - non_interactive=non_interactive, ) click.echo(fmt.title("Interactive platform configuration"))