Remove trailing whitespace.
This commit is contained in:
parent
de4e2027a1
commit
ebd066b170
2 changed files with 4 additions and 4 deletions
|
@ -3,7 +3,7 @@ This is a Python script designed to run as an [ejabberd external auth](https://d
|
||||||
|
|
||||||
The code is derived from [ejabberd-auth-mysql](https://github.com/rankenstein/ejabberd-auth-mysql) and is licensed under the GNU GPLv3.
|
The code is derived from [ejabberd-auth-mysql](https://github.com/rankenstein/ejabberd-auth-mysql) and is licensed under the GNU GPLv3.
|
||||||
|
|
||||||
It is used on [Chinwag Social](https://social.chinwag.org) to provide XMPP messaging functionality to every account.
|
It is used on [Chinwag Social](https://social.chinwag.org) to provide XMPP messaging functionality to every account.
|
||||||
|
|
||||||
Discussion, questions and/or just saying hi in the [Chinwag Social Beergarden](xmpp:beergarden@rooms.chinwag.org?join) MUC (beergarden@rooms.chinwag.org) is welcomed!
|
Discussion, questions and/or just saying hi in the [Chinwag Social Beergarden](xmpp:beergarden@rooms.chinwag.org?join) MUC (beergarden@rooms.chinwag.org) is welcomed!
|
||||||
|
|
||||||
|
|
|
@ -25,7 +25,7 @@ logging.basicConfig(level=logging.INFO,
|
||||||
filemode='a')
|
filemode='a')
|
||||||
|
|
||||||
try:
|
try:
|
||||||
# Connect to the DB, set autocommit and readonly otherwise postgresql seems to have a
|
# Connect to the DB, set autocommit and readonly otherwise postgresql seems to have a
|
||||||
# tendency to keep things "idle in transaction" and table locks eventually grind
|
# tendency to keep things "idle in transaction" and table locks eventually grind
|
||||||
# Mastodon to a halt. We don't make any changes anyway.
|
# Mastodon to a halt. We don't make any changes anyway.
|
||||||
database=psycopg2.connect(host = db_host, user = db_user, password = db_pass, database = db_name, port = db_port)
|
database=psycopg2.connect(host = db_host, user = db_user, password = db_pass, database = db_name, port = db_port)
|
||||||
|
@ -140,8 +140,8 @@ while True:
|
||||||
|
|
||||||
op_result = False
|
op_result = False
|
||||||
try:
|
try:
|
||||||
# Only 'auth' and 'isuser' implemented, placeholders left to maybe
|
# Only 'auth' and 'isuser' implemented, placeholders left to maybe
|
||||||
# expose other functions later but for now let's not even think about
|
# expose other functions later but for now let's not even think about
|
||||||
# modifying the Mastodon DB
|
# modifying the Mastodon DB
|
||||||
if ejab_request[0] == "auth":
|
if ejab_request[0] == "auth":
|
||||||
op_result = auth(ejab_request[1], ejab_request[2], ejab_request[3])
|
op_result = auth(ejab_request[1], ejab_request[2], ejab_request[3])
|
||||||
|
|
Loading…
Reference in a new issue