Skip to content

Commit

Permalink
isort
Browse files Browse the repository at this point in the history
  • Loading branch information
jacoor committed Jul 6, 2017
1 parent 72a5cb2 commit 76414fe
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions aa_stripe/management/commands/charge_stripe.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@ def handle(self, *args, **options):
})

for e in exceptions:
print ("Exception happened")
print ("Charge id: {obj.id}".format(obj=e["obj"]))
print("Exception happened")
print("Charge id: {obj.id}".format(obj=e["obj"]))
traceback.print_exception(e["exc_type"], e["exc_value"], e["exc_traceback"], file=sys.stdout)
4 changes: 2 additions & 2 deletions aa_stripe/management/commands/end_subscriptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@ def handle(self, *args, **options):
})

for e in exceptions:
print ("Exception happened")
print ("Subscription id: {obj.id}".format(obj=e["obj"]))
print("Exception happened")
print("Subscription id: {obj.id}".format(obj=e["obj"]))
traceback.print_exception(e["exc_type"], e["exc_value"], e["exc_traceback"], file=sys.stdout)

0 comments on commit 76414fe

Please sign in to comment.