Skip to content

Commit

Permalink
Fixed the response data variables
Browse files Browse the repository at this point in the history
  • Loading branch information
OdinsPlasmaRifle committed Mar 20, 2020
1 parent e5a5017 commit f86bc51
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion drf_request_logging/masks.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,4 +82,4 @@ def mask_and_clean_body(body):


def mask_and_clean_response_data(data):
return mask_and_clean(body, MASKED_RESPONSE_KEYS)
return mask_and_clean(data, MASKED_RESPONSE_KEYS)
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from setuptools import find_packages, setup


VERSION = '0.0.7'
VERSION = '0.0.8'

with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme:
README = readme.read()
Expand Down

0 comments on commit f86bc51

Please sign in to comment.