Move separator within loop
This commit is contained in:
parent
9a84fc899e
commit
987efe8f99
1 changed files with 4 additions and 3 deletions
|
@ -62,8 +62,9 @@ class Command(BaseCommand):
|
||||||
else:
|
else:
|
||||||
self.stdout.write(self.style.SUCCESS(
|
self.stdout.write(self.style.SUCCESS(
|
||||||
'Customer email %s does not have a stripe customer.' % email))
|
'Customer email %s does not have a stripe customer.' % email))
|
||||||
|
self.stdout.write(
|
||||||
|
self.style.SUCCESS(
|
||||||
|
"---------------------------------------------")
|
||||||
|
)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
print(" *** Error occurred. Details {}".format(str(e)))
|
print(" *** Error occurred. Details {}".format(str(e)))
|
||||||
self.stdout.write(
|
|
||||||
self.style.SUCCESS("---------------------------------------------")
|
|
||||||
)
|
|
||||||
|
|
Loading…
Reference in a new issue