From 69b8b25322c9303414b3605408ada044d5b5fad1 Mon Sep 17 00:00:00 2001
From: Ed Morley <emorley@mozilla.com>
Date: Mon, 29 Feb 2016 18:28:23 +0000
Subject: [PATCH] Use the canonical (and HTTPS) URLs for devcenter and pip

To save the 301s.
---
 Readme.md               | 2 +-
 bin/detect              | 2 +-
 bin/steps/collectstatic | 2 +-
 bin/steps/cryptography  | 2 +-
 bin/steps/gdal          | 2 +-
 bin/steps/pylibmc       | 2 +-
 6 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/Readme.md b/Readme.md
index 37b3f7df..e0e10e24 100644
--- a/Readme.md
+++ b/Readme.md
@@ -1,7 +1,7 @@
 # Heroku Buildpack: Python
 ![buildpack_python](https://cloud.githubusercontent.com/assets/51578/13116296/5f4058f0-d569-11e5-8129-bffd7be091e6.jpg)
 
-This is the official [Heroku buildpack](http://devcenter.heroku.com/articles/buildpacks) for Python apps, powered by [pip](http://www.pip-installer.org/) and other excellent software.
+This is the official [Heroku buildpack](https://devcenter.heroku.com/articles/buildpacks) for Python apps, powered by [pip](https://pip.pypa.io/) and other excellent software.
 
 Recommended web frameworks include **Django** and **Flask**. The recommended webserver is **Gunicorn**. There are no restrictions around what software can be used (as long as it's pip-installable). Web processes must bind to `$PORT`, and only the HTTP protocol is permitted for incoming connections.
 
diff --git a/bin/detect b/bin/detect
index 818ed74e..e114d71c 100755
--- a/bin/detect
+++ b/bin/detect
@@ -4,7 +4,7 @@
 # [**Python Buildpack**](https://github.com/heroku/heroku-buildpack-python)
 # detector.
 #
-# A [buildpack](http://devcenter.heroku.com/articles/buildpacks) is an
+# A [buildpack](https://devcenter.heroku.com/articles/buildpacks) is an
 # adapter between a Python application and Heroku's runtime.
 
 # ## Usage
diff --git a/bin/steps/collectstatic b/bin/steps/collectstatic
index 56dc7a7f..f8f63f5b 100755
--- a/bin/steps/collectstatic
+++ b/bin/steps/collectstatic
@@ -47,7 +47,7 @@ if [ ! "$DISABLE_COLLECTSTATIC" ] && [ -f "$MANAGE_FILE" ] && [ "$DJANGO_INSTALL
         echo
         echo "          $ heroku config:set DISABLE_COLLECTSTATIC=1"
         echo
-        echo "       http://devcenter.heroku.com/articles/django-assets"
+        echo "       https://devcenter.heroku.com/articles/django-assets"
 
         # Additionally, dump out the environment, if debug mode is on.
         if [ "$DEBUG_COLLECTSTATIC" ]; then
diff --git a/bin/steps/cryptography b/bin/steps/cryptography
index 5fcb1193..56ef778d 100755
--- a/bin/steps/cryptography
+++ b/bin/steps/cryptography
@@ -4,7 +4,7 @@
 # [**Python Buildpack**](https://github.com/heroku/heroku-buildpack-python)
 # compiler.
 #
-# A [buildpack](http://devcenter.heroku.com/articles/buildpacks) is an
+# A [buildpack](https://devcenter.heroku.com/articles/buildpacks) is an
 # adapter between a Python application and Heroku's runtime.
 #
 # This script is invoked by [`bin/compile`](/).
diff --git a/bin/steps/gdal b/bin/steps/gdal
index 31a23fd6..032a3459 100755
--- a/bin/steps/gdal
+++ b/bin/steps/gdal
@@ -4,7 +4,7 @@
 # [**Python Buildpack**](https://github.com/heroku/heroku-buildpack-python)
 # compiler.
 #
-# A [buildpack](http://devcenter.heroku.com/articles/buildpacks) is an
+# A [buildpack](https://devcenter.heroku.com/articles/buildpacks) is an
 # adapter between a Python application and Heroku's runtime.
 #
 # This script is invoked by [`bin/compile`](/).
diff --git a/bin/steps/pylibmc b/bin/steps/pylibmc
index b4bde751..f3f13c60 100755
--- a/bin/steps/pylibmc
+++ b/bin/steps/pylibmc
@@ -4,7 +4,7 @@
 # [**Python Buildpack**](https://github.com/heroku/heroku-buildpack-python)
 # compiler.
 #
-# A [buildpack](http://devcenter.heroku.com/articles/buildpacks) is an
+# A [buildpack](https://devcenter.heroku.com/articles/buildpacks) is an
 # adapter between a Python application and Heroku's runtime.
 #
 # This script is invoked by [`bin/compile`](/).
-- 
GitLab