r47039 - fix

hawkowl-TA+aISz0psMTMxyoc4vAAJOcrHinNvQL0E9HWUfgJXw@public.gmane.org Sun, 20 Mar 2016 19:27:06 -0600 (MDT)
Newsgroups gmane.comp.python.twisted.commits
Message-ID <[email protected]>
Author: hawkowl
Date: Sun Mar 20 19:27:00 2016
New Revision: 47039

Modified:
   branches/clarity-sshuserauth-8240/twisted/conch/ssh/userauth.py

Log:
fix

Modified: branches/clarity-sshuserauth-8240/twisted/conch/ssh/userauth.py
==============================================================================
--- branches/clarity-sshuserauth-8240/twisted/conch/ssh/userauth.py	(original)
+++ branches/clarity-sshuserauth-8240/twisted/conch/ssh/userauth.py	Sun Mar 20 19:27:00 2016
@@ -746,7 +746,7 @@
 MSG_USERAUTH_PK_OK            = 60
 
 messages = {}
-for k, v in items(locals()):
+for k, v in locals().items():
     if k[:4] == 'MSG_':
         messages[v] = k