google cloud storage: Fix compile after API change in "google.golang.org/api/storage/v1"

The breaking change is: google-api-go-generator: remove underscores from identifiers.
This commit is contained in:
Nick Craig-Wood 2015-05-19 08:18:26 +01:00
parent 88293a4b8a
commit ba81277bbe
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ const (
var (
// Description of how to auth for this app
storageAuth = &googleauth.Auth{
Scope: storage.DevstorageFull_controlScope,
Scope: storage.DevstorageFullControlScope,
DefaultClientId: rcloneClientId,
DefaultClientSecret: rcloneClientSecret,
}