tilde-projects/Code/irc/evil.py

10 lines
201 B
Python
Raw Normal View History

import random
2018-10-05 20:02:38 +00:00
def get_thing():
file = "/home/krowbar/logs/evildata.txt"
thing = ""
2018-10-05 20:02:38 +00:00
return (
"If I Ever Become an Evil Overlord: " + random.choice(list(open(file))).rstrip()
)