Show More
@@ -1192,7 +1192,7 b' def load_cached_diff(cached_diff_file):' | |||
|
1192 | 1192 | |
|
1193 | 1193 | has_cache = os.path.isfile(cached_diff_file) |
|
1194 | 1194 | if not has_cache: |
|
1195 | log.debug('Reading diff cache file failed', cached_diff_file) | |
|
1195 | log.debug('Reading diff cache file failed %s', cached_diff_file) | |
|
1196 | 1196 | return default_struct |
|
1197 | 1197 | |
|
1198 | 1198 | data = None |
@@ -279,8 +279,7 b' class MercurialCommit(base.BaseCommit):' | |||
|
279 | 279 | |
|
280 | 280 | if self._get_kind(path) != NodeKind.DIR: |
|
281 | 281 | raise CommitError( |
|
282 | "Directory does not exist for idx %s at '%s'" % | |
|
283 | (self.idx, path)) | |
|
282 | "Directory does not exist for idx %s at '%s'" % (self.raw_id, path)) | |
|
284 | 283 | path = self._fix_path(path) |
|
285 | 284 | |
|
286 | 285 | filenodes = [ |
General Comments 0
You need to be logged in to leave comments.
Login now