Merge "Fix django.conf.urls.defaults imports"

This commit is contained in:
Jenkins 2013-11-13 08:09:10 +00:00 committed by Gerrit Code Review
commit a43040c817
1 changed files with 2 additions and 2 deletions

View File

@ -12,8 +12,8 @@
# License for the specific language governing permissions and limitations
# under the License.
from django.conf.urls.defaults import patterns # noqa
from django.conf.urls.defaults import url # noqa
from django.conf.urls import patterns # noqa
from django.conf.urls import url # noqa
from openstack_dashboard.dashboards.project.stacks import views