Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
D
docker-py
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
docker-py
Commits
7a39cda2
Kaydet (Commit)
7a39cda2
authored
Şub 10, 2014
tarafından
Joffrey F
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge pull request #165 from stpierre/fix-http-error
Fix APIError for requests 1.1
üst
4b090441
cfbd41ca
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
client.py
docker/client.py
+4
-1
No files found.
docker/client.py
Dosyayı görüntüle @
7a39cda2
...
...
@@ -35,7 +35,10 @@ STREAM_HEADER_SIZE_BYTES = 8
class
APIError
(
requests
.
exceptions
.
HTTPError
):
def
__init__
(
self
,
message
,
response
,
explanation
=
None
):
super
(
APIError
,
self
)
.
__init__
(
message
,
response
=
response
)
# requests 1.2 supports response as a keyword argument, but
# requests 1.1 doesn't
super
(
APIError
,
self
)
.
__init__
(
message
)
self
.
response
=
response
self
.
explanation
=
explanation
...
...
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