Show More
@@ -7,7 +7,7 b'' | |||
|
7 | 7 | |
|
8 | 8 | from i18n import _ |
|
9 | 9 | import osutil, scmutil, util |
|
10 | import os, stat | |
|
10 | import os, stat, errno | |
|
11 | 11 | |
|
12 | 12 | _sha = util.sha1 |
|
13 | 13 | |
@@ -403,7 +403,9 b' class fncachestore(basicstore):' | |||
|
403 | 403 | try: |
|
404 | 404 | yield f, ef, self.getsize(ef) |
|
405 | 405 | existing.append(f) |
|
406 | except OSError: | |
|
406 | except OSError, err: | |
|
407 | if err.errno != errno.ENOENT: | |
|
408 | raise | |
|
407 | 409 | # nonexistent entry |
|
408 | 410 | rewrite = True |
|
409 | 411 | if rewrite: |
General Comments 0
You need to be logged in to leave comments.
Login now