diff options
author | Maxime “pep” Buquet <pep@bouah.net> | 2018-10-13 12:12:58 +0100 |
---|---|---|
committer | Maxime “pep” Buquet <pep@bouah.net> | 2018-10-13 12:13:32 +0100 |
commit | 284103d3700be866d2a4312122654da7074dbcf0 (patch) | |
tree | b8e6345e71c680ff12f42add4d6b05d96a8bd4c7 /plugins | |
parent | b4b16c794a6df35ee0af2e6b57c2948976e8ec5e (diff) | |
download | poezio-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.py | 5 |
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, |