Fix the close pull requests script.

Fixes bug #1012310

Need to use the .login property on orgs instead of the .name property.

Change-Id: I603f9172966fc99c8f49d592ce7a9009084840cd
diff --git a/close_pull_requests.py b/close_pull_requests.py
index 6a46166..245bbcc 100755
--- a/close_pull_requests.py
+++ b/close_pull_requests.py
@@ -66,7 +66,7 @@
                          secure_config.get("github", "password"))
 
 orgs = ghub.get_user().get_orgs()
-orgs_dict = dict(zip([o.name.lower() for o in orgs], orgs))
+orgs_dict = dict(zip([o.login.lower() for o in orgs], orgs))
 for section in config.sections():
     # Each section looks like [project "openstack/project"]
     m = PROJECT_RE.match(section)