Philipp Hörist pushed to branch master at gajim / gajim
Commits:
a4806046 by Philipp Hörist at 2019-11-09T19:28:01Z
Fix typo
- - - - -
1 changed file:
- gajim/common/helpers.py
Changes:
=====================================
gajim/common/helpers.py
=====================================
@@ -1464,7 +1464,7 @@ def event_filter(filter_):
return event_filter_decorator
-def catch_execptions(func):
+def catch_exceptions(func):
@wraps(func)
def func_wrapper(self, *args, **kwargs):
try:
@@ -1532,7 +1532,7 @@ def parse_uri(uri):
return URI(type=URIType.WEB, data=uri)
-@catch_execptions
+@catch_exceptions
def open_uri(uri, account=None):
if not isinstance(uri, URI):
uri = parse_uri(uri)
@@ -1575,7 +1575,7 @@ def open_uri(uri, account=None):
log.warning('Cant open URI: %s', uri)
-@catch_execptions
+@catch_exceptions
def open_file(path):
if os.name == 'nt':
os.startfile(path)
View it on GitLab:
https://dev.gajim.org/gajim/gajim/commit/a480604666674a1f87dd74cd797bedc4b289b730
--
View it on GitLab:
https://dev.gajim.org/gajim/gajim/commit/a480604666674a1f87dd74cd797bedc4b289b730
You're receiving this email because of your account on dev.gajim.org.
_______________________________________________
Commits mailing list
[email protected]
https://lists.gajim.org/cgi-bin/listinfo/commits