From 570998719bae65852a31da7934ae67707eb9428f Mon Sep 17 00:00:00 2001 From: Isaac Smith Date: Sat, 14 May 2016 20:08:00 -0400 Subject: [PATCH] Fix unseen error. Result of one of the previous changes. Almost didn't notice it. --- wolframalpha/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wolframalpha/__init__.py b/wolframalpha/__init__.py index e19f87c..173334d 100644 --- a/wolframalpha/__init__.py +++ b/wolframalpha/__init__.py @@ -85,7 +85,7 @@ class Result(object): @property def details(self): ''' Get a simplified set of answers with some context. ''' - return {pod.title: pod.details for pod in self.pods} + return {pod.title: pod.text for pod in self.pods} class Pod(object): ''' Groups answers and information contextualizing those answers. '''