From e25aece700363a318c903a37bdc43001bdd02d17 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Wed, 12 Jun 2013 17:04:14 -0700 Subject: [PATCH] Use filePath instead of path as variable name --- src/app/repository-status-handler.coffee | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/repository-status-handler.coffee b/src/app/repository-status-handler.coffee index d879152b3..663fa43dc 100644 --- a/src/app/repository-status-handler.coffee +++ b/src/app/repository-status-handler.coffee @@ -8,8 +8,8 @@ module.exports = if repo? workingDirectoryPath = repo.getWorkingDirectory() statuses = {} - for path, status of repo.getStatus() - statuses[path.join(workingDirectoryPath, path)] = status + for filePath, status of repo.getStatus() + statuses[path.join(workingDirectoryPath, filePath)] = status upstream = repo.getAheadBehindCount() repo.release() else