##// END OF EJS Templates
revrange: fix up empty query again
Matt Mackall -
r11410:38d4c9b9 default
parent child Browse files
Show More
@@ -163,12 +163,13 b' def revrange(repo, revs):'
163 163 seen.add(rev)
164 164 l.append(rev)
165 165 continue
166 elif spec in repo: # single unquoted rev
166 elif spec and spec in repo: # single unquoted rev
167 167 rev = revfix(repo, spec, None)
168 168 if rev in seen:
169 169 continue
170 170 seen.add(rev)
171 171 l.append(rev)
172 continue
172 173 except error.RepoLookupError:
173 174 pass
174 175
General Comments 0
You need to be logged in to leave comments. Login now