summaryrefslogtreecommitdiff
path: root/client/modules
diff options
context:
space:
mode:
authorschneefux <schneefux+commit@schneefux.xyz>2014-05-27 23:25:31 -0700
committerschneefux <schneefux+commit@schneefux.xyz>2014-05-27 23:26:17 -0700
commitc1a49a4b925abfd10f4a6faa85d8afe9689bdd4c (patch)
treefbfdab168ec5cfde4a26c09795af5501420ac76d /client/modules
parent77f96c260f7232cefc77054f2d2bb938072b3c57 (diff)
downloadjasper-client-c1a49a4b925abfd10f4a6faa85d8afe9689bdd4c.tar.gz
jasper-client-c1a49a4b925abfd10f4a6faa85d8afe9689bdd4c.zip
moved static assets to separate folder
Diffstat (limited to 'client/modules')
-rw-r--r--client/modules/Joke.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/modules/Joke.py b/client/modules/Joke.py
index 454280c..52b3eb9 100644
--- a/client/modules/Joke.py
+++ b/client/modules/Joke.py
@@ -4,7 +4,7 @@ import re
WORDS = ["JOKE", "KNOCK KNOCK"]
-def getRandomJoke(filename="JOKES.txt"):
+def getRandomJoke(filename="../static/text/JOKES.txt"):
jokeFile = open(filename, "r")
jokes = []
start = ""