Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYann Leboulanger <asterix@lagaule.org>2011-05-31 19:46:49 +0400
committerYann Leboulanger <asterix@lagaule.org>2011-05-31 19:46:49 +0400
commit635d9a02d590241cb47d33d421534e3d449a50b7 (patch)
tree2fa7e39e6bededfd28d0a8029e5ee1bc3a111aae
parentff0c0dc1c552b89ff473b6cb5b90229ffa271455 (diff)
coding standards
-rw-r--r--src/common/connection.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/common/connection.py b/src/common/connection.py
index 06b1a1507..e92dc57a0 100644
--- a/src/common/connection.py
+++ b/src/common/connection.py
@@ -460,10 +460,11 @@ class CommonConnection:
str(e)))
except exceptions.DatabaseMalformed:
pritext = _('Database Error')
- sectext = _('The database file (%s) cannot be read. Try to '
- 'repair it (see http://trac.gajim.org/wiki/DatabaseBackup)'
- ' or remove it (all history will be lost).') % \
- common.logger.LOG_DB_PATH
+ sectext = _('The database file (%s) cannot be read. Try'
+ ' to repair it (see '
+ 'http://trac.gajim.org/wiki/DatabaseBackup)'
+ ' or remove it (all history will be lost).') % \
+ common.logger.LOG_DB_PATH
self.dispatch('DB_ERROR', (pritext, sectext))
def ack_subscribed(self, jid):