Skip to content

Commit

Permalink
create_environment_repos: fix error log (#209)
Browse files Browse the repository at this point in the history
  • Loading branch information
zzzeid authored Jan 29, 2025
1 parent 955d153 commit 3badf36
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ def handle(self, *args, **options):
try:
repo = Repo.objects.create(**definition)
except IntegrityError as e:
self.stderr.write(e)
self.stderr.write(str(e))
self.stdout.write(
self.style.WARNING(
f"Repo {definition['name']} already exists or could not be added, skipping."
Expand Down

0 comments on commit 3badf36

Please sign in to comment.