Skip to content

Commit

Permalink
dashes to spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
aharbick committed Nov 18, 2016
1 parent b812019 commit 848fba2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/simctl-list-parser.js
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ function parseDeviceType(line) {

if (matches) {
var obj = {
'name': matches[1].trim(),
'name': matches[1].replace(/\-/g, ' ').trim(),
'id': matches[2].trim()
};

Expand Down

0 comments on commit 848fba2

Please sign in to comment.