From b1d5857fc46e314746af3fd0ed09c9a279804254 Mon Sep 17 00:00:00 2001 From: John Franey Date: Fri, 20 Nov 2015 10:52:28 -0400 Subject: [PATCH] Update README.markdown Update Django example to use `django.conf.urls.url` rather than `macrosurl.url` for a clearer comparison --- README.markdown | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.markdown b/README.markdown index 8691eeb..9f2ea2a 100644 --- a/README.markdown +++ b/README.markdown @@ -93,8 +93,7 @@ urlpatterns = patterns( Django way urls example ```python -from django.conf.urls import patterns -from macrosurl import url +from django.conf.urls import patterns, url from project.portal.views import IndexView @@ -125,4 +124,4 @@ Alexandr Shurigin (aka [phpdude](https://github.com/phpdude/)) Sorry for my english level :( -You are welcome fix readme to good english by pull request! Thank you. \ No newline at end of file +You are welcome fix readme to good english by pull request! Thank you.