diff --git a/markov.py b/markov.py index f15f387..2327013 100755 --- a/markov.py +++ b/markov.py @@ -47,5 +47,6 @@ def getTime(): if __name__ == "__main__": os.nice(5) + text = markovifyText(getText()) time.sleep(getTime()) - twitools.tweet(markovifyText(getText()), section = setuptools.MARKOV) + twitools.tweet(text, section = setuptools.MARKOV)