Skip to content

Commit

Permalink
Update the format of versions.ini
Browse files Browse the repository at this point in the history
  • Loading branch information
williamdes committed Dec 18, 2024
1 parent 49d094f commit 5e16f70
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions demo/management/commands/fetch_versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@ def handle(self, *args, **options):

processed = set()

for version in config['demo']['branches[]']:
for variant in config['demo']['variants[]']:
demo, created = Demo.objects.get_or_create(
name=version,
name=variant.split(':')[0],
defaults={'master_version': master}
)
modified |= created
Expand Down

0 comments on commit 5e16f70

Please sign in to comment.