Skip to content

Commit f0d6e02

Browse files
committed
Fix typo in method name call
1 parent 8b58ea3 commit f0d6e02

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

thebook/members/management/commands/create_receivable_fees_for_next_period.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ class Command(BaseCommand):
88
help = "Create receivable fees for next period"
99

1010
def handle(self, *args, **options):
11-
ReceivableFee.objects.create_for_next_iperiod()
11+
ReceivableFee.objects.create_for_next_period()
1212

1313
self.stdout.write(
1414
self.style.SUCCESS("Successfully create d receivable fees for next period")

0 commit comments

Comments
 (0)