Skip to content

Commit 5273c2e

Browse files
samueldggbin
authored andcommitted
Fix/backend import error messages (#1248)
* Add missing word for Slack/Hipchat import error * Fix typo in XMPP backend import error
1 parent 368675c commit 5273c2e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

errbot/backends/hipchat.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
except ImportError:
2424
log.exception("Could not start the HipChat backend")
2525
log.fatal(
26-
"You need to install the hipchat support in order to use the HipChat.\n "
26+
"You need to install the hipchat support in order to use the HipChat backend.\n "
2727
"You should be able to install this package using:\n"
2828
"pip install errbot[hipchat]"
2929
)

errbot/backends/slack.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
except ImportError:
2626
log.exception("Could not start the Slack back-end")
2727
log.fatal(
28-
"You need to install the slackclient support in order to use the Slack.\n"
28+
"You need to install the slackclient support in order to use the Slack backend.\n"
2929
"You can do `pip install errbot[slack]` to install it"
3030
)
3131
sys.exit(1)

errbot/backends/xmpp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
except ImportError:
2222
log.exception("Could not start the XMPP backend")
2323
log.fatal("""
24-
If you intend to use the XMPP backend pleas install the support for XMPP with:
24+
If you intend to use the XMPP backend please install the support for XMPP with:
2525
pip install errbot[XMPP]
2626
""")
2727
sys.exit(-1)

0 commit comments

Comments
 (0)