don't bump version, fix tyop
authorJan Schaumann <jschauma@netmeister.org>
Mon, 9 Jul 2012 13:41:09 +0000 (09:41 -0400)
committerJan Schaumann <jschauma@netmeister.org>
Mon, 9 Jul 2012 13:41:09 +0000 (09:41 -0400)
setup.py
tests.py
tweepy/__init__.py

index 83bc79c0b53d571ac4919f40fcc1f4f68341b6c0..edd4e3e49a72d868b3c6c04ab5bb01eb8e90c559 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -3,7 +3,7 @@
 from setuptools import setup, find_packages
 
 setup(name="tweepy",
-      version="1.9.1",
+      version="1.9",
       description="Twitter library for python",
       license="MIT",
       author="Joshua Roesslein",
index e3c45bf0028dbe7e4cd6fb10afda79f629b42a97..bd3ef88264f95be32e2dc912b72c2e4c5cfc950f 100644 (file)
--- a/tests.py
+++ b/tests.py
@@ -43,7 +43,7 @@ class TweepyAPITests(unittest.TestCase):
 
     def testretweetedbyuser(self):
         self.api.retweeted_by_user()
-        self.api.retweeted_bye_user('twitter')
+        self.api.retweeted_by_user('twitter')
 
     def testretweetedtome(self):
         self.api.retweeted_to_me()
index 990c08cfc134ca21268bfc2bb96009266f422c5f..e79bc2c2b041a2fb387cf462af963c8bf966fb99 100644 (file)
@@ -5,7 +5,7 @@
 """
 Tweepy Twitter API library
 """
-__version__ = '1.9.1'
+__version__ = '1.9'
 __author__ = 'Joshua Roesslein'
 __license__ = 'MIT'