Move separator within loop

This commit is contained in:
PCoder 2019-11-28 12:35:32 +05:30
parent 9a84fc899e
commit 987efe8f99
1 changed files with 4 additions and 3 deletions

View File

@ -62,8 +62,9 @@ class Command(BaseCommand):
else:
self.stdout.write(self.style.SUCCESS(
'Customer email %s does not have a stripe customer.' % email))
self.stdout.write(
self.style.SUCCESS(
"---------------------------------------------")
)
except Exception as e:
print(" *** Error occurred. Details {}".format(str(e)))
self.stdout.write(
self.style.SUCCESS("---------------------------------------------")
)