Fixes max size error message.
authorSteven Skoczen <steven@quantumimagery.com>
Wed, 21 Jan 2015 04:48:24 +0000 (11:48 +0700)
committerSteven Skoczen <steven@quantumimagery.com>
Wed, 21 Jan 2015 04:48:24 +0000 (11:48 +0700)
tweepy/api.py

index e822823f6c14c33f6b39103caf84602fa50ebba4..3e498383857d0b91329292f92282e9e68fe973dd 100644 (file)
@@ -1244,7 +1244,7 @@ class API(object):
         if f is None:
             try:
                 if os.path.getsize(filename) > (max_size * 1024):
-                    raise TweepError('File is too big, must be less than 700kb.')
+                    raise TweepError('File is too big, must be less than kb.' % max_size)
             except os.error:
                 raise TweepError('Unable to access file')
 
@@ -1253,7 +1253,7 @@ class API(object):
         else:
             f.seek(0, 2)  # Seek to end of file
             if f.tell() > (max_size * 1024):
-                raise TweepError('File is too big, must be less than 700kb.')
+                raise TweepError('File is too big, must be less than kb.' % max_size)
             f.seek(0)  # Reset to beginning of file
             fp = f