Quote using quotation marks
This commit is contained in:
parent
fbfdcfcfaf
commit
8f5a6a6357
1 changed files with 1 additions and 1 deletions
|
@ -146,7 +146,7 @@ def add_quote():
|
||||||
quote = models.Quote(user, quote_text, channel)
|
quote = models.Quote(user, quote_text, channel)
|
||||||
db.session.add(quote)
|
db.session.add(quote)
|
||||||
db.session.commit()
|
db.session.commit()
|
||||||
return mattermost_response("{} added the quote {}".format(user, quote_text))
|
return mattermost_response("{} added the quote \"{}\"".format(user, quote_text))
|
||||||
|
|
||||||
@app.route('/', methods=['GET'])
|
@app.route('/', methods=['GET'])
|
||||||
def list_quotes():
|
def list_quotes():
|
||||||
|
|
Loading…
Reference in a new issue