summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimothy Edmund Crosley <timothy.crosley@gmail.com>2017-06-04 15:04:55 -0700
committerGitHub <noreply@github.com>2017-06-04 15:04:55 -0700
commit05b0085282fb6fd5136946d0e817c90895a6c699 (patch)
treee18afc90b275e15e84219be36291397802b7b21d
parent9f0838be558718c3a4021e6117353c57230fdfec (diff)
parent8a07b3eb10acc858e0de45f2d8d3cc017cffb447 (diff)
downloadisort-05b0085282fb6fd5136946d0e817c90895a6c699.tar.gz
Merge pull request #561 from jdufresne/https
Prefer https URLs over http in docs and comments
-rw-r--r--README.rst2
-rw-r--r--isort/natural.py2
-rw-r--r--isort/pie_slice.py2
-rw-r--r--tox.ini5
4 files changed, 3 insertions, 8 deletions
diff --git a/README.rst b/README.rst
index 68b03850..bc83c515 100644
--- a/README.rst
+++ b/README.rst
@@ -4,7 +4,7 @@
########
.. image:: https://badge.fury.io/py/isort.svg
- :target: http://badge.fury.io/py/isort
+ :target: https://badge.fury.io/py/isort
:alt: PyPI version
.. image:: https://travis-ci.org/timothycrosley/isort.svg?branch=master
diff --git a/isort/natural.py b/isort/natural.py
index aac8c4a3..c02b42c3 100644
--- a/isort/natural.py
+++ b/isort/natural.py
@@ -8,7 +8,7 @@ usage:
Copyright (C) 2013 Timothy Edmund Crosley
Implementation originally from @HappyLeapSecond stack overflow user in response to:
- http://stackoverflow.com/questions/5967500/how-to-correctly-sort-a-string-with-a-number-inside
+ https://stackoverflow.com/questions/5967500/how-to-correctly-sort-a-string-with-a-number-inside
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
documentation files (the "Software"), to deal in the Software without restriction, including without limitation
diff --git a/isort/pie_slice.py b/isort/pie_slice.py
index d2f7b0f0..178cf33e 100644
--- a/isort/pie_slice.py
+++ b/isort/pie_slice.py
@@ -289,7 +289,7 @@ if sys.version_info < (3, 2):
View the cache statistics named tuple (hits, misses, maxsize, currsize) with
f.cache_info(). Clear the cache and statistics with f.cache_clear().
Access the underlying function with f.__wrapped__.
- See: http://en.wikipedia.org/wiki/Cache_algorithms#Least_Recently_Used
+ See: https://en.wikipedia.org/wiki/Cache_algorithms#Least_Recently_Used
"""
def decorating_function(user_function, tuple=tuple, sorted=sorted, len=len, KeyError=KeyError):
diff --git a/tox.ini b/tox.ini
index 90229ce4..b2324a68 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,8 +1,3 @@
-# Tox (http://tox.testrun.org/) is a tool for running tests
-# in multiple virtualenvs. This configuration file will run the
-# test suite on all supported python versions. To use it, "pip install tox"
-# and then run "tox" from this directory.
-
[tox]
envlist =
isort-check,