Show More
@@ -11,7 +11,6 | |||
|
11 | 11 | from __future__ import absolute_import |
|
12 | 12 | |
|
13 | 13 | import collections |
|
14 | import os | |
|
15 | 14 | |
|
16 | 15 | from .i18n import _ |
|
17 | 16 | from .node import ( |
@@ -143,8 +142,7 def bisect(changelog, state): | |||
|
143 | 142 | |
|
144 | 143 | def load_state(repo): |
|
145 | 144 | state = {'current': [], 'good': [], 'bad': [], 'skip': []} |
|
146 |
|
|
|
147 | for l in repo.vfs("bisect.state"): | |
|
145 | for l in repo.vfs.tryreadlines("bisect.state"): | |
|
148 | 146 |
|
|
149 | 147 |
|
|
150 | 148 |
|
General Comments 0
You need to be logged in to leave comments.
Login now