Skip to content

Commit

Permalink
added parenthsis around version in search
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian Morton committed Feb 13, 2018
1 parent 7a08bbf commit 7f16909
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mas-cli/Commands/Search.swift
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ struct SearchCommand: CommandProtocol {
if let appName = result[ResultKeys.TrackName] as? String,
let appVersion = result[ResultKeys.Version] as? String,
let appId = result[ResultKeys.TrackId] as? Int {
print("\(String(appId)) \(appName) \(appVersion)")
print("\(String(appId)) \(appName) (\(appVersion))")
}
}

Expand Down

0 comments on commit 7f16909

Please sign in to comment.