nak no longer includes a space after the colon

This commit is contained in:
Kevin Sawicki
2013-04-02 16:49:17 -07:00
parent 955e1571a2
commit 34ca5ce949
2 changed files with 3 additions and 3 deletions

View File

@@ -165,9 +165,9 @@ class Project
state = 'readingPath'
path = null
else
colonIndex = line.indexOf(': ')
colonIndex = line.indexOf(':')
matchInfo = line.substring(0, colonIndex)
lineText = line.substring(colonIndex + 2)
lineText = line.substring(colonIndex + 1)
readMatches(matchInfo, lineText)
readMatches = (matchInfo, lineText) ->