##// END OF EJS Templates
fullreposet: detect smartset using "isascending" instead of "set"...
Pierre-Yves David -
r22883:e7b8cf35 default
parent child Browse files
Show More
@@ -2980,7 +2980,7 b' class fullreposet(_spanset):'
2980 This boldly assumes the other contains valid revs only.
2980 This boldly assumes the other contains valid revs only.
2981 """
2981 """
2982 # other not a smartset, make is so
2982 # other not a smartset, make is so
2983 if not util.safehasattr(other, 'set'):
2983 if not util.safehasattr(other, 'isascending'):
2984 # filter out hidden revision
2984 # filter out hidden revision
2985 # (this boldly assumes all smartset are pure)
2985 # (this boldly assumes all smartset are pure)
2986 #
2986 #
General Comments 0
You need to be logged in to leave comments. Login now