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
f8fa8ec8
Commit
f8fa8ec8
authored
Feb 21, 2015
by
Joshua Roesslein
Browse files
Merge pull request #562 from RussellTaylor83/master
Update api.py
parents
24ca4ea4
e1466e02
Changes
1
Hide whitespace changes
Inline
Side-by-side
tweepy/api.py
View file @
f8fa8ec8
...
...
@@ -1271,8 +1271,8 @@ class API(object):
try
:
if
os
.
path
.
getsize
(
filename
)
>
(
max_size
*
1024
):
raise
TweepError
(
'File is too big, must be less than %skb.'
%
max_size
)
except
os
.
error
:
raise
TweepError
(
'Unable to access file
'
)
except
os
.
error
as
e
:
raise
TweepError
(
'Unable to access file
: %s'
%
e
.
strerror
)
# build the mulitpart-formdata body
fp
=
open
(
filename
,
'rb'
)
...
...
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