mirror of
https://github.com/atom/atom.git
synced 2026-02-07 21:25:05 -05:00
nak no longer includes a space after the colon
This commit is contained in:
@@ -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) ->
|
||||
|
||||
Reference in New Issue
Block a user