diff options
Diffstat (limited to 'mediagoblin/__init__.py')
-rw-r--r-- | mediagoblin/__init__.py | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/mediagoblin/__init__.py b/mediagoblin/__init__.py index d4ecd745..88dedd28 100644 --- a/mediagoblin/__init__.py +++ b/mediagoblin/__init__.py @@ -14,16 +14,4 @@ # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. -import warnings - -import six - from mediagoblin._version import __version__ - - -if six.PY2: - warnings.warn( - "MediaGoblin's Python 2 support will be removed in the next" - " release. Please consider switching to Python 3.", - DeprecationWarning, - ) |