From c7cce02dbd1a54edeccda07dc910c87d4c16fbe2 Mon Sep 17 00:00:00 2001 From: Tomaz Muraus Date: Fri, 7 Apr 2017 11:40:26 +0200 Subject: [PATCH] Fix pylint in demos/secrets.py-dist file. --- demos/secrets.py-dist | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/demos/secrets.py-dist b/demos/secrets.py-dist index a4c52c5b1f..57e7500a09 100644 --- a/demos/secrets.py-dist +++ b/demos/secrets.py-dist @@ -21,8 +21,9 @@ BRIGHTBOX_PARAMS = ('client_id', 'client_secret') EC2_PARAMS = ('access_id', 'secret') ECP_PARAMS = ('user_name', 'password') GANDI_PARAMS = ('user',) -GCE_PARAMS = ('email@developer.gserviceaccount.com', 'key') # Service Account Authentication -#GCE_PARAMS = ('client_id', 'client_secret') # Installed App Authentication +# Service Account Authentication +GCE_PARAMS = ('email@developer.gserviceaccount.com', 'key') +# GCE_PARAMS = ('client_id', 'client_secret') # Installed App Authentication GCE_KEYWORD_PARAMS = {'project': 'project_name'} HOSTINGCOM_PARAMS = ('user', 'secret') IBM_PARAMS = ('user', 'secret')