Skip to content

Commit

Permalink
0.6.4 | GradeCSVProcessor.save() should return something.
Browse files Browse the repository at this point in the history
  • Loading branch information
iloveagent57 committed Sep 24, 2019
1 parent c11a30b commit e2d5542
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ Unreleased
~~~~~~~~~~
*

[0.6.4] - 2019-09-24
~~~~~~~~~~~~~~~~~~~~~
* ``GradeCSVProcessor.save()`` should return something.

[0.6.3] - 2019-09-24
~~~~~~~~~~~~~~~~~~~~~
* Upgrade super-csv to 0.9.4, make sure to pass ``user_id`` to GradeCSVProcessor.__init__().
Expand Down
2 changes: 1 addition & 1 deletion bulk_grades/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@

from __future__ import absolute_import, unicode_literals

__version__ = '0.6.3'
__version__ = '0.6.4'

default_app_config = 'bulk_grades.apps.BulkGradesConfig' # pylint: disable=invalid-name
2 changes: 1 addition & 1 deletion bulk_grades/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ def save(self, operation_name=None, operating_user=None):
Saves the operation state for this processor, including the user
who is performing the operation.
"""
super(GradeCSVProcessor, self).save(operating_user=self._user)
return super(GradeCSVProcessor, self).save(operating_user=self._user)

def get_unique_path(self):
"""
Expand Down

0 comments on commit e2d5542

Please sign in to comment.