Fixes missing string sub.
authorSteven Skoczen <steven@quantumimagery.com>
Thu, 22 Jan 2015 14:39:17 +0000 (21:39 +0700)
committerSteven Skoczen <steven@quantumimagery.com>
Thu, 22 Jan 2015 14:39:17 +0000 (21:39 +0700)
tweepy/api.py

index 3e498383857d0b91329292f92282e9e68fe973dd..a6d207698f0d882ed84386fa14bf9e49f35ed294 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 kb.' % max_size)
+                    raise TweepError('File is too big, must be less than %skb.' % 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 kb.' % max_size)
+                raise TweepError('File is too big, must be less than %skb.' % max_size)
             f.seek(0)  # Reset to beginning of file
             fp = f