Use auto type detection for scanned devices in smart input (#3561)

(cherry picked from commit 93d16a4603)
This commit is contained in:
Daniel Nelson 2017-12-08 18:03:12 -08:00 committed by Daniel Nelson
parent 994e75f1f0
commit fd964bd4eb
No known key found for this signature in database
GPG Key ID: CAAD59C9444F6155
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ func (m *Smart) scan() ([]string, error) {
devices := []string{}
for _, line := range strings.Split(string(out), "\n") {
dev := strings.Split(line, "#")
dev := strings.Split(line, " ")
if len(dev) > 1 && !excludedDev(m.Excludes, strings.TrimSpace(dev[0])) {
devices = append(devices, strings.TrimSpace(dev[0]))
}