]> jfr.im git - z_archive/twitter.git/commitdiff
Here comes 1.3! twitter-1.3
authorMike Verdone <redacted>
Sat, 8 May 2010 20:06:36 +0000 (22:06 +0200)
committerMike Verdone <redacted>
Sat, 8 May 2010 20:06:36 +0000 (22:06 +0200)
setup.py
twitter/cmdline.py

index 1dd5dbcbac6d67fb51a8bebedc0574c14cb9b40b..8ad9a8fad14815f912963ce0f640e7bab7c56b1d 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,7 +1,7 @@
 from setuptools import setup, find_packages
 import sys, os
 
-version = '1.3b'
+version = '1.3'
 
 install_requires=[
     # -*- Extra requirements: -*-
index efe95a2936bc194d514045e2a0bfbf79c5efe88e..597329beed73c74cc828bf1e631e519aeba6515f 100644 (file)
@@ -52,7 +52,6 @@ prompt: <twitter_shell_prompt e.g. '[cyan]twitter[R]> '>
 
  OAuth authentication tokens are stored in the file .twitter_oauth in your
  home directory.
-
 """
 
 CONSUMER_KEY='uS6hO2sV6tDKIOeVjhnFnQ'
@@ -73,10 +72,6 @@ from api import Twitter, TwitterError
 from oauth import OAuth
 import ansi
 
-# Please don't change this, it was provided by the fine folks at Twitter.
-# If you change it, it will not work.
-AGENT_STR = "twittercommandlinetoolpy"
-
 OPTIONS = {
     'action': 'friends',
     'refresh': False,
@@ -94,7 +89,7 @@ OPTIONS = {
 
 def parse_args(args, options):
     long_opts = ['help', 'format=', 'refresh', 'oauth=',
-                 'refresh-rate', 'config', 'length', 'timestamp', 
+                 'refresh-rate=', 'config=', 'length=', 'timestamp', 
                  'datestamp', 'no-ssl']
     short_opts = "e:p:f:h?rR:c:l:td"
     opts, extra_args = getopt(args, short_opts, long_opts)