summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFlorent Le Coz <louiz@louiz.org>2011-02-09 20:42:57 +0100
committerFlorent Le Coz <louiz@louiz.org>2011-02-09 20:42:57 +0100
commitd31f1390ad85caab806677022f9d510715663923 (patch)
tree892f081d1fb803bb1ddc8b7acc8db5ba3fd1af25 /src
parentc94b755b4d87b179206b0ff9fa37b851b3b52b60 (diff)
downloadpoezio-d31f1390ad85caab806677022f9d510715663923.tar.gz
poezio-d31f1390ad85caab806677022f9d510715663923.tar.bz2
poezio-d31f1390ad85caab806677022f9d510715663923.tar.xz
poezio-d31f1390ad85caab806677022f9d510715663923.zip
update version to 0.7.5-dev and remove some debug
Diffstat (limited to 'src')
-rw-r--r--src/connection.py2
-rw-r--r--src/core.py2
2 files changed, 1 insertions, 3 deletions
diff --git a/src/connection.py b/src/connection.py
index 509f1676..a8bd491f 100644
--- a/src/connection.py
+++ b/src/connection.py
@@ -57,7 +57,7 @@ class Connection(sleekxmpp.ClientXMPP):
self.register_plugin('xep_0004')
if config.get('send_poezio_info', 'true') == 'true':
info = {'name':'poezio',
- 'version':'0.7.1'}
+ 'version':'0.7.5-dev'}
if config.get('send_os_info', 'true') == 'true':
info['os'] = common.get_os_info()
self.register_plugin('xep_0092', pconfig=info)
diff --git a/src/core.py b/src/core.py
index e2f3633e..b96315c0 100644
--- a/src/core.py
+++ b/src/core.py
@@ -755,7 +755,6 @@ class Core(object):
Reset terminal capabilities to what they were before ncurses
init
"""
- log.debug('ALLO, reset_curses')
curses.echo()
curses.nocbreak()
curses.curs_set(1)
@@ -1392,7 +1391,6 @@ class Core(object):
self.information(_("unknown command (%s)") % (command), _('Error'))
def doupdate(self):
- log.debug('doupdate doupdate')
if not self.running:
return
self.current_tab().just_before_refresh()