Commit 79ee07ea authored by OzzieIsaacs's avatar OzzieIsaacs

Fix for python3 and pickle

parent ce6cde54
......@@ -85,7 +85,10 @@ import hashlib
from redirect import redirect_back
import time
import server
import cPickle
try:
import cPickle
except ImportError:
import pickle as cPickle
try:
from urllib.parse import quote
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment