Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
*.egg-info/
eggs/
.eggs/
*.pyc
.coverage
.tox/
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

import sys, os

from flask.ext.basicauth import __version__
from flask_basicauth import __version__

# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
Expand Down
4 changes: 2 additions & 2 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -77,14 +77,14 @@ A list of configuration keys currently understood by the extension:
The correct username and password combination that grants access for the
client to the protected resource.

You can override :meth:`BasicAuth.check_credentials <flask.ext.basicauth.BasicAuth.check_credentials>`,
You can override :meth:`BasicAuth.check_credentials <flask_basicauth.BasicAuth.check_credentials>`,
if you need a different authentication logic for your application.


API reference
-------------

.. module:: flask.ext.basicauth
.. module:: flask_basicauth

This part of the documentation covers all the public classes and functions
in Flask-BasicAuth.
Expand Down
2 changes: 1 addition & 1 deletion flask_basicauth.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
flask.ext.basicauth
flask_basicauth
~~~~~~~~~~~~~~~~~~~

Flask-BasicAuth is a Flask extension that provides an easy way to protect
Expand Down
2 changes: 1 addition & 1 deletion test_basicauth.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import unittest

from flask import Flask
from flask.ext.basicauth import BasicAuth
from flask_basicauth import BasicAuth


class BasicAuthTestCase(unittest.TestCase):
Expand Down