diff options
Diffstat (limited to 'command.py')
-rw-r--r-- | command.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -290,7 +290,7 @@ class Command: | |||
290 | output.end() | 290 | output.end() |
291 | 291 | ||
292 | def _ResetPathToProjectMap(self, projects): | 292 | def _ResetPathToProjectMap(self, projects): |
293 | self._by_path = dict((p.worktree, p) for p in projects) | 293 | self._by_path = {p.worktree: p for p in projects} |
294 | 294 | ||
295 | def _UpdatePathToProjectMap(self, project): | 295 | def _UpdatePathToProjectMap(self, project): |
296 | self._by_path[project.worktree] = project | 296 | self._by_path[project.worktree] = project |