changeset 19284:87bb53367633 stable

histedit: raise ImportError when demandloading is enabled
author Simon Heimberg <simohe@besonet.ch>
date Wed, 05 Jun 2013 21:16:49 +0200
parents 04eb7d7e115b
children 73066ba46ec5
files hgext/histedit.py
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/hgext/histedit.py	Sat Jun 01 17:10:24 2013 -0500
+++ b/hgext/histedit.py	Wed Jun 05 21:16:49 2013 +0200
@@ -140,6 +140,7 @@
 
 try:
     import cPickle as pickle
+    pickle.dump # import now
 except ImportError:
     import pickle
 import os