summaryrefslogtreecommitdiff
path: root/src/core.py
diff options
context:
space:
mode:
authorFlorent Le Coz <louiz@louiz.org>2011-03-07 20:11:47 +0100
committerFlorent Le Coz <louiz@louiz.org>2011-03-07 20:11:47 +0100
commitb6a5ed7286401ade80474c26d069b0e1b8e41ac6 (patch)
tree025c88fe23489229bcb7c2cc8f18bc547f08fce4 /src/core.py
parentd6d566e39bdb9d876d0dd3a9ad4a69bb8f904331 (diff)
downloadpoezio-b6a5ed7286401ade80474c26d069b0e1b8e41ac6.tar.gz
poezio-b6a5ed7286401ade80474c26d069b0e1b8e41ac6.tar.bz2
poezio-b6a5ed7286401ade80474c26d069b0e1b8e41ac6.tar.xz
poezio-b6a5ed7286401ade80474c26d069b0e1b8e41ac6.zip
very little cleanup
Diffstat (limited to 'src/core.py')
-rw-r--r--src/core.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/core.py b/src/core.py
index aeb06adf..d113fe25 100644
--- a/src/core.py
+++ b/src/core.py
@@ -14,8 +14,7 @@
# You should have received a copy of the GNU General Public License
# along with Poezio. If not, see <http://www.gnu.org/licenses/>.
-from gettext import (bindtextdomain, textdomain, bind_textdomain_codeset,
- gettext as _)
+from gettext import gettext as _
from time import sleep
@@ -238,7 +237,7 @@ class Core(object):
elif message['type'] == 'groupchat':
self.on_chatstate_groupchat_conversation(message, state)
- def on_chatstate_normal_conversation(self, message,state):
+ def on_chatstate_normal_conversation(self, message, state):
tab = self.get_tab_of_conversation_with_jid(message['from'], False)
if not tab:
return False