From 1be0b817de4e32cececb438c93597f51a4505ac1 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Fri, 1 Mar 2013 16:40:51 -0800 Subject: [PATCH] Specify text as second parameter --- src/app/git.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/git.coffee b/src/app/git.coffee index d5ab39f31..d1f213c28 100644 --- a/src/app/git.coffee +++ b/src/app/git.coffee @@ -144,7 +144,7 @@ class Git @getRepo().getAheadBehindCounts() getLineDiffs: (path, text) -> - @getRepo().getLineDiffs(@relativize(path), path) + @getRepo().getLineDiffs(@relativize(path), text) _.extend Git.prototype, Subscriber _.extend Git.prototype, EventEmitter