# HG changeset patch # User Pierre-Yves David # Date 1343308148 -7200 # Node ID 04e67d6f19130ee1e8d407eaeeaa639adf6145b3 # Parent 92adb5b34a04e8084a4fdaa10e12a55bae0aa9f7 backout temporary fix for clone Now fixed into core diff -r 92adb5b34a04 -r 04e67d6f1913 hgext/obsolete.py --- a/hgext/obsolete.py Thu Jul 26 13:42:12 2012 +0200 +++ b/hgext/obsolete.py Thu Jul 26 15:09:08 2012 +0200 @@ -70,7 +70,6 @@ from mercurial import commands from mercurial import changelog from mercurial import phases -from mercurial import store from mercurial.node import hex, bin, short, nullid from mercurial.lock import release from mercurial import localrepo @@ -84,18 +83,6 @@ def storecache(*args): return scmutil.filecache(*args, instore=True) -### temporary core fix -############################# -getattr(store, '_load', lambda:None)() -if 'obsstore' not in vars(store)['_data']: - store._data = vars(store)['_data'] + ' obsstore' - -def wrapcopylist(orig, *args, **kwargs): - l = orig(*args, **kwargs) - if 'store/obsstore' not in l: - l.append('store/obsstore') - return l - ### Patch changectx #############################