From 5614af65bdd7e03383b625896af17d1610165d06 Mon Sep 17 00:00:00 2001 From: jczetta Date: Wed, 17 Aug 2016 18:08:26 -0400 Subject: [PATCH] Remove now-unnecessary hack from activecode.py --- runestone/activecode/activecode.py | 1 - 1 file changed, 1 deletion(-) diff --git a/runestone/activecode/activecode.py b/runestone/activecode/activecode.py index 61274f202..185f98c33 100644 --- a/runestone/activecode/activecode.py +++ b/runestone/activecode/activecode.py @@ -88,7 +88,6 @@ def visit_ac_node(self, node): # todo: handle if 'gradebutton' in node.ac_components: res += GRADES res = res % node.ac_components - res = res.replace("u'", "'") # hack: there must be a better way to include the list and avoid unicode strings self.body.append(res)