summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorMaxime “pep” Buquet <pep@bouah.net>2018-10-13 12:12:58 +0100
committerMaxime “pep” Buquet <pep@bouah.net>2018-10-13 12:13:32 +0100
commit284103d3700be866d2a4312122654da7074dbcf0 (patch)
treeb8e6345e71c680ff12f42add4d6b05d96a8bd4c7 /plugins
parentb4b16c794a6df35ee0af2e6b57c2948976e8ec5e (diff)
downloadpoezio-284103d3700be866d2a4312122654da7074dbcf0.tar.gz
poezio-284103d3700be866d2a4312122654da7074dbcf0.tar.bz2
poezio-284103d3700be866d2a4312122654da7074dbcf0.tar.xz
poezio-284103d3700be866d2a4312122654da7074dbcf0.zip
upload: add user friendly error when upload service not found
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
Diffstat (limited to 'plugins')
-rw-r--r--plugins/upload.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/plugins/upload.py b/plugins/upload.py
index 4013243a..db8615c2 100644
--- a/plugins/upload.py
+++ b/plugins/upload.py
@@ -21,6 +21,8 @@ import traceback
from os.path import expanduser
from glob import glob
+from slixmpp.plugins.xep_0363.http_upload import UploadServiceNotFound
+
from poezio.plugin import BasePlugin
from poezio.core.structs import Completion
from poezio.decorators import command_args_parser
@@ -44,6 +46,9 @@ class Plugin(BasePlugin):
async def async_upload(self, filename):
try:
url = await self.core.xmpp['xep_0363'].upload_file(filename)
+ except UploadServiceNotFound:
+ self.api.information('HTTP Upload service not found.', 'Error')
+ return
except Exception:
exception = traceback.format_exc()
self.api.information('Failed to upload file: %s' % exception,