Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Remove quotes the find/replace didn't get rid of
  • Loading branch information
ssmith committed Sep 23, 2016
1 parent db7ec02 commit 3c392d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion go.py
Expand Up @@ -1039,7 +1039,7 @@ def _modify_(self, **kwargs):
@cherrypy.expose
def _internal_(self, *args, **kwargs):
# check, toplinks, special, dumplist
return env.get_template("" + args[0] + ".html").render(**kwargs)
return env.get_template(args[0] + ".html").render(**kwargs)

@cherrypy.expose
def toplinks(self, n="100"):
Expand Down

0 comments on commit 3c392d2

Please sign in to comment.