tilde-projects/Code/irc/evil.py

10 lines
201 B
Python

import random
def get_thing():
file = "/home/krowbar/logs/evildata.txt"
thing = ""
return (
"If I Ever Become an Evil Overlord: " + random.choice(list(open(file))).rstrip()
)