1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 19:44:20 +00:00
This commit is contained in:
Steffo 2017-02-20 12:56:14 +01:00
commit ab6e696aa8

2
bot.py
View file

@ -439,7 +439,7 @@ def leggi():
print("@" + username + ": /leggi")
if len(cmd) == 1:
telegram.sendmessage("[Apri il diario RYG](http://royal.steffo.me/diario.htm)!\n_(Puoi visualizzare un elemento casuale scrivendo /leggi random o leggere un elemento specifico con /leggi [numero])_", sentin, source)
else if cmd[1] == "random":
elif cmd[1] == "random":
fdiario = filemanager.readfile("diario.txt").split("\n")
n = random.randrange(len(fdiario))
entry = fdiario[n].split("|")