From 341fb85b54fd4ddfda8d1adb8f20387ffbe949b1 Mon Sep 17 00:00:00 2001 From: Tulir Asokan Date: Sat, 28 Sep 2019 19:03:50 +0300 Subject: [PATCH] Fix typo and add commitstrip and supportportal plugins to readme --- README.md | 2 ++ maubot/db.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3a0f83a..f3f49e4 100644 --- a/README.md +++ b/README.md @@ -27,6 +27,8 @@ Matrix room: [#maubot:maunium.net](https://matrix.to/#/#maubot:maunium.net) * [translate](https://github.com/maubot/translate) - A bot to translate words. * [reactbot](https://github.com/maubot/reactbot) - A bot that responds to messages that match predefined rules. * [exec](https://github.com/maubot/exec) - A bot that executes code. +* [commitstrip](https://github.com/maubot/commitstrip) - A bot to view CommitStrips. +* [supportportal](https://github.com/maubot/supportportal) - A bot to manage customer support on Matrix. Open a pull request or join the Matrix room linked above to get your plugin listed here diff --git a/maubot/db.py b/maubot/db.py index ba9dbfc..f06224b 100644 --- a/maubot/db.py +++ b/maubot/db.py @@ -84,7 +84,7 @@ def init(config: Config) -> Engine: log = logging.getLogger("maubot.db") if db.has_table("client") and db.has_table("plugin"): - log.warning("alembic_version table not found, but cligent and plugin tables found. " + log.warning("alembic_version table not found, but client and plugin tables found. " "Assuming pre-Alembic database and inserting version.") db.execute("CREATE TABLE IF NOT EXISTS alembic_version (" " version_num VARCHAR(32) PRIMARY KEY"