Mercurial > libervia-backend
diff src/plugins/plugin_xep_0096.py @ 721:0077912bc9ba
jp: removed named argument for pipeOut, as it's not managed with dynamicaly added methods
author | Goffi <goffi@goffi.org> |
---|---|
date | Tue, 26 Nov 2013 18:30:35 +0100 |
parents | 6821fc06a324 |
children | bfabeedbf32e |
line wrap: on
line diff
--- a/src/plugins/plugin_xep_0096.py Sat Nov 23 13:38:05 2013 +0100 +++ b/src/plugins/plugin_xep_0096.py Tue Nov 26 18:30:35 2013 +0100 @@ -32,7 +32,7 @@ PROFILE = "http://jabber.org/protocol/si/profile/" + PROFILE_NAME PLUGIN_INFO = { - "name": "XEP 0096 Plugin", + "name": "XEP-0096 Plugin", "import_name": "XEP-0096", "type": "XEP", "protocols": ["XEP-0096"], @@ -301,4 +301,4 @@ def sendFailureCb(self, sid, file_obj, stream_method, reason, profile): file_obj.close() - warning(_('Transfer %(id)s failed with stream method %(s_method)s: %(reason)s [%(profile)s') % {'id': sid, "s_method": stream_method, 'reason': reason, 'profile': profile}) + warning(_('Transfer %(id)s failed with stream method %(s_method)s: %(reason)s [%(profile)s]') % {'id': sid, "s_method": stream_method, 'reason': reason, 'profile': profile})