Skip to content

Commit

Permalink
Update info.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Aadhi000 authored Nov 21, 2021
1 parent fdb3a56 commit d6cc020
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion info.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def is_enabled(value, default):
IMDB = is_enabled((environ.get('IMDB', "True")), True)
SINGLE_BUTTON = is_enabled((environ.get('SINGLE_BUTTON', "False")), False)
CUSTOM_FILE_CAPTION = environ.get("CUSTOM_FILE_CAPTION", None)
IMDB_TEMPLATE = environ.get("IMDB_TEMPLATE", "πŸ“Ÿ <b>Title: <a href={url}>{title}</a></b>\n\n🎭 <b>Genres: {genres}</b>\nπŸ“† <b>Year: <a href={url}/releaseinfo>{year}</a></b>\n\n🌟 <b>Rating: <a href={url}/ratings>{rating}</a>/10</b>\nπŸ”Š <b>Languages : <code>{languages}</code></b>\n\nπŸ’ƒπŸΌ <b>Cast : <code>{cast}</code></b>\n⏱ <b>Runtime : {runtime} Minutes</b>\n🌏 <b>Countries : <code>{countries}</code></b>\n\nπŸ‘©πŸ»β€πŸ’» <b>Requested By : {message.from_user.mention}</b>")
IMDB_TEMPLATE = environ.get("IMDB_TEMPLATE", "πŸ“Ÿ <b>Title: <a href={url}>{title}</a></b>\n\n🎭 <b>Genres: {genres}</b>\nπŸ“† <b>Year: <a href={url}/releaseinfo>{year}</a></b>\n\n🌟 <b>Rating: <a href={url}/ratings>{rating}</a>/10</b>\nπŸ”Š <b>Languages : <code>{languages}</code></b>\n\nπŸ’ƒπŸΌ <b>Cast : <code>{cast}</code></b>\n⏱ <b>Runtime : {runtime} Minutes</b>\n🌏 <b>Countries : <code>{countries}</code></b>")
LONG_IMDB_DESCRIPTION = is_enabled(environ.get("LONG_IMDB_DESCRIPTION", "False"), False)
SPELL_CHECK_REPLY = is_enabled(environ.get("SPELL_CHECK_REPLY", "True"), True)
MAX_LIST_ELM = environ.get("MAX_LIST_ELM", None)
Expand Down

0 comments on commit d6cc020

Please sign in to comment.