Remove extra debugging code that made it into a commit.
This commit is contained in:
		@@ -85,17 +85,6 @@ class CommandBot(sleekxmpp.ClientXMPP):
 | 
			
		||||
        form.addField(var='greeting',
 | 
			
		||||
                      ftype='text-single',
 | 
			
		||||
                      label='Your greeting')
 | 
			
		||||
        form.addField(var='recipient',
 | 
			
		||||
                      ftype='jid-single',
 | 
			
		||||
                      label='Who to greet')
 | 
			
		||||
        form.addField(var='message',
 | 
			
		||||
                      ftype='text-multi',
 | 
			
		||||
                      label='Your message')
 | 
			
		||||
        form.addField(var='demobool',
 | 
			
		||||
                      ftype='boolean',
 | 
			
		||||
                      label='Test booleans',
 | 
			
		||||
                      desc='Test default values too',
 | 
			
		||||
                      value=True)
 | 
			
		||||
 | 
			
		||||
        session['payload'] = form
 | 
			
		||||
        session['next'] = self._handle_command_complete
 | 
			
		||||
@@ -137,13 +126,9 @@ class CommandBot(sleekxmpp.ClientXMPP):
 | 
			
		||||
        form = payload
 | 
			
		||||
 | 
			
		||||
        greeting = form['values']['greeting']
 | 
			
		||||
        recipient = form['values']['recipient']
 | 
			
		||||
        message = '\n'.join(form['values']['message'])
 | 
			
		||||
 | 
			
		||||
        if recipient is None:
 | 
			
		||||
            recipient = session['from']
 | 
			
		||||
        self.send_message(mto=recipient,
 | 
			
		||||
                          mbody="%s, %s!\n%s" % (greeting, recipient, message),
 | 
			
		||||
        self.send_message(mto=session['from'],
 | 
			
		||||
                          mbody="%s, World!" % greeting,
 | 
			
		||||
                          mtype='chat')
 | 
			
		||||
 | 
			
		||||
        # Having no return statement is the same as unsetting the 'payload'
 | 
			
		||||
 
 | 
			
		||||
@@ -36,7 +36,7 @@ class EchoBot(sleekxmpp.ClientXMPP):
 | 
			
		||||
    """
 | 
			
		||||
 | 
			
		||||
    def __init__(self, jid, password):
 | 
			
		||||
        sleekxmpp.ClientXMPP.__init__(self, jid, password, plugin_config={'feature_mechanisms': {'use_mech': 'PLAIN'}})
 | 
			
		||||
        sleekxmpp.ClientXMPP.__init__(self, jid, password)
 | 
			
		||||
 | 
			
		||||
        # The session_start event will be triggered when
 | 
			
		||||
        # the bot establishes its connection with the server
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user