Fixing BoundingBox.corner() - was returning incorrect data.
authorinactivist <inactivist@gmail.com>
Tue, 13 Nov 2012 22:48:15 +0000 (14:48 -0800)
committerinactivist <inactivist@gmail.com>
Tue, 13 Nov 2012 22:48:15 +0000 (14:48 -0800)
tweepy/models.py

index cae46ee6aacae9fe4bdab5d44bffe184c6791daa..fe5521f2d8db239f6d32fcad7a401d6a3f98e1f8 100644 (file)
@@ -338,19 +338,23 @@ class BoundingBox(Model):
 
     def origin(self):
         """
-        Return longitude, latitude of northwest corner of bounding box, as
-        tuple.  This assumes that bounding box is always a rectangle, which
+        Return longitude, latitude of southwest (bottom, left) corner of 
+        bounding box, as a tuple.  
+        
+        This assumes that bounding box is always a rectangle, which
         appears to be the case at present.
         """
         return tuple(self.coordinates[0][0])
 
     def corner(self):
         """
-        Return longitude, latitude of southeast corner of bounding box, as
-        tuple.  This assumes that bounding box is always a rectangle, which
+        Return longitude, latitude of northeast (top, right) corner of
+        bounding box, as a tuple.  
+        
+        This assumes that bounding box is always a rectangle, which
         appears to be the case at present.
         """
-        return tuple(self.coordinates[0][1])
+        return tuple(self.coordinates[0][2])
 
 
 class Place(Model):