Skip to content
Snippets Groups Projects
Verified Commit b94bb505 authored by Jonathan Weth's avatar Jonathan Weth :keyboard:
Browse files

Merge branch 'master' into release-2.1.3

parents 3f5d152f 5ce243b5
No related branches found
No related tags found
1 merge request!126Release 2.1.3
Pipeline #54124 passed
......@@ -9,6 +9,12 @@ and this project adheres to `Semantic Versioning`_.
Unreleased
----------
Changed
~~~~~~~
* Let untis_import_mysql management command default to ``current`` instead of all
to prevent accidental imports of old plans
`2.1.3`_ - 2022-02-06
---------------------
......
......@@ -6,7 +6,7 @@ from ...commands import COMMANDS_BY_NAME
class Command(BaseCommand):
def add_arguments(self, parser):
parser.add_argument(
"command", nargs="?", default="all", type=str, choices=list(COMMANDS_BY_NAME.keys())
"command", nargs="?", default="current", type=str, choices=list(COMMANDS_BY_NAME.keys())
)
parser.add_argument(
"--background",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment