Merge pull request #207 from gabrielpjordao/patch-1

Put whitespaces around equal sign on README
This commit is contained in:
Mehdy Bohlool 2017-05-08 09:55:51 -07:00 committed by GitHub
commit 4729e6865d

View File

@ -35,7 +35,7 @@ from kubernetes import client, config
# Configs can be set in Configuration class directly or using helper utility
config.load_kube_config()
v1=client.CoreV1Api()
v1 = client.CoreV1Api()
print("Listing pods with their IPs:")
ret = v1.list_pod_for_all_namespaces(watch=False)
for i in ret.items: