You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by an...@apache.org on 2016/11/14 23:51:33 UTC

[46/56] [abbrv] libcloud git commit: Fix lint in example script

Fix lint in example script


Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo
Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/c705fcf1
Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/c705fcf1
Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/c705fcf1

Branch: refs/heads/trunk
Commit: c705fcf1771466ac2445a8058334c27cd1040e81
Parents: 8afcda9
Author: anthony-shaw <an...@apache.org>
Authored: Thu Apr 14 21:44:01 2016 +1000
Committer: anthony-shaw <an...@apache.org>
Committed: Thu Apr 14 21:44:01 2016 +1000

----------------------------------------------------------------------
 docs/examples/compute/azure_arm/instantiate.py | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/c705fcf1/docs/examples/compute/azure_arm/instantiate.py
----------------------------------------------------------------------
diff --git a/docs/examples/compute/azure_arm/instantiate.py b/docs/examples/compute/azure_arm/instantiate.py
index 0448ae1..c9d0801 100644
--- a/docs/examples/compute/azure_arm/instantiate.py
+++ b/docs/examples/compute/azure_arm/instantiate.py
@@ -2,4 +2,6 @@ from libcloud.compute.types import Provider
 from libcloud.compute.providers import get_driver
 
 cls = get_driver(Provider.AZURE_ARM)
-driver = cls(tenant_id='tenant_id', subscription_id='subscription_id', key='application_id', secret='password')
+driver = cls(tenant_id='tenant_id',
+             subscription_id='subscription_id',
+             key='application_id', secret='password')