Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
ecommerce
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
ecommerce
Commits
da832628
Commit
da832628
authored
May 29, 2018
by
Ahsan Ulhaq
Committed by
Ahsan Ul Haq
May 31, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Unicode Voucher Error
LEARNER-4666
parent
89edc02a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletions
+3
-1
ecommerce/extensions/voucher/utils.py
+3
-1
No files found.
ecommerce/extensions/voucher/utils.py
View file @
da832628
"""Voucher Utility Methods. """
from
__future__
import
unicode_literals
import
base64
import
datetime
import
hashlib
...
...
@@ -673,7 +675,7 @@ def get_cached_voucher(code):
Voucher.DoesNotExist: When no vouchers with provided code exist.
"""
cache_key
=
'voucher_{code}'
.
format
(
code
=
code
)
cache_key
=
hashlib
.
md5
(
cache_key
)
.
hexdigest
()
cache_key
=
hashlib
.
md5
(
cache_key
)
.
hexdigest
()
# pylint: disable=redefined-variable-type
voucher
=
cache
.
get
(
cache_key
)
if
not
voucher
:
voucher
=
Voucher
.
objects
.
get
(
code
=
code
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment