Skip to content

Commit

Permalink
Fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
hancush committed Oct 26, 2021
1 parent 2e2713c commit 2abe2a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion payroll/management/commands/import_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ def pre_import(self, s_file):
self.prompt('Found {0} salaries for unit {1}.\n{2}\nDo you wish to delete? '.format(salaries.count(), unit.name, salaries))

summary = salaries.delete()
self.stdout.write('Salary deletion summary for unit {0}: {1}'.format(unit.name summary))
self.stdout.write('Salary deletion summary for unit {0}: {1}'.format(unit.name, summary))

def upload(self):
upload = Upload.objects.create()
Expand Down

0 comments on commit 2abe2a8

Please sign in to comment.