Skip to content

Commit

Permalink
create_environment_repos: fix error log
Browse files Browse the repository at this point in the history
  • Loading branch information
zzzeid committed Jan 29, 2025
1 parent 06b8523 commit 94abb70
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 94abb70

Please sign in to comment.