except ImportError when importing cPickle on Python3

cPickle is not available with Python3. With Python3 the standard
version should be imported.

Change-Id: I0c17aaeeebceff1c25950bbe59cedc62f31b13e7
This commit is contained in:
Christian Berendt 2014-06-06 12:51:41 +02:00
parent b0c88e7dd7
commit e3e93c7f90
1 changed files with 4 additions and 1 deletions

View File

@ -19,7 +19,10 @@ import re
import sys
import threading
import traceback
import cPickle as pickle
try:
import cPickle as pickle
except ImportError:
import pickle
import os
from genshi.template import TemplateLoader