Skip to content

Commit

Permalink
fix: package name should include backend
Browse files Browse the repository at this point in the history
  • Loading branch information
sijis authored and nzlosh committed Sep 24, 2022
1 parent 19eb558 commit d7fd803
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion _slack/room.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
log.exception("Could not start the SlackSDK backend")
log.fatal(
"You need to install python modules in order to use the Slack backend.\n"
"You can do `pip install errbot-plugin-slackv3` to install them."
"You can do `pip install errbot-backend-slackv3` to install them."
)
sys.exit(1)

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def read(name, encoding="ascii"):
]

setup(
name="errbot-plugin-slackv3",
name="errbot-backend-slackv3",
version="0.2.0",
description="Errbot SlackV3 backend plugin",
author="Errbot",
Expand Down
2 changes: 1 addition & 1 deletion slackv3.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
log.exception("Could not start the SlackV3 backend")
log.fatal(
"You need to install python modules in order to use the Slack backend.\n"
"You can do `pip install errbot-plugin-slackv3` to install them."
"You can do `pip install errbot-backend-slackv3` to install them."
)
sys.exit(1)

Expand Down

0 comments on commit d7fd803

Please sign in to comment.