commit | c8b11d197d04e843d5c52215f078bd16ac6d502a | [log] [tgz] |
---|---|---|
author | Samuel A. Falvo II <kc5tja@arrl.net> | Tue Jul 30 12:04:35 2013 -0700 |
committer | Samuel A. Falvo II <kc5tja@arrl.net> | Tue Jul 30 12:04:35 2013 -0700 |
tree | 975b7161bee28f8b5bed68691cd8fbcbe34be25b | |
parent | 102b7df05e6356496b482ee77e7d7aef46f7dbc4 [diff] | |
parent | bc6812399df8d424a7e952aa16ec016da45e12ff [diff] |
Merge pull request #60 from rackspace/fix-list-flavors Return details with list of flavors.
diff --git a/flavors.go b/flavors.go index 5062389..33c66d4 100644 --- a/flavors.go +++ b/flavors.go
@@ -9,7 +9,7 @@ var fs []Flavor err := gsp.context.WithReauth(gsp.access, func() error { - url := gsp.endpoint + "/flavors" + url := gsp.endpoint + "/flavors/detail" return perigee.Get(url, perigee.Options{ CustomClient: gsp.context.httpClient, Results: &struct{ Flavors *[]Flavor }{&fs},