Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mbargull committed Jun 24, 2017
1 parent ed71aec commit 14eb1ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions conda/gateways/connection/adapters/s3.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# -*- coding: utf-8 -*-
from __future__ import absolute_import, division, print_function, unicode_literals

from logging import getLogger, LoggingAdapter
from logging import getLogger, LoggerAdapter
from tempfile import mkstemp

from .. import BaseAdapter, CaseInsensitiveDict, Response
from ...disk.delete import rm_rf
from ....common.url import url_to_s3_info

log = getLogger(__name__)
stderrlog = LoggingAdapter(getLogger('conda.stderrlog'), extra=dict(terminator="\n"))
stderrlog = LoggerAdapter(getLogger('conda.stderrlog'), extra=dict(terminator="\n"))


class S3Adapter(BaseAdapter):
Expand Down

0 comments on commit 14eb1ba

Please sign in to comment.