Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Zahra Rajabi
tweepy
Commits
3b4bbabe
Commit
3b4bbabe
authored
Jan 22, 2015
by
Steven Skoczen
Browse files
Fixes missing string sub.
parent
d4d601e9
Changes
1
Hide whitespace changes
Inline
Side-by-side
tweepy/api.py
View file @
3b4bbabe
...
...
@@ -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
%s
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 kb.'
%
max_size
)
raise
TweepError
(
'File is too big, must be less than
%s
kb.'
%
max_size
)
f
.
seek
(
0
)
# Reset to beginning of file
fp
=
f
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment