Fix indentation in settings and urls modules
This commit is contained in:
parent
15ce31eedb
commit
e9bdb18b7e
2 changed files with 28 additions and 28 deletions
|
@ -17,6 +17,8 @@
|
|||
# along with this program in a file in the toplevel directory called
|
||||
# "AGPLv3". If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
from pathlib import Path
|
||||
|
||||
from djangocommonsettings import *
|
||||
|
||||
SITE_ID = 2
|
||||
|
|
|
@ -49,14 +49,12 @@ urlpatterns = [
|
|||
url(r'^about', static_views.index),
|
||||
url(r'^activities', static_views.index),
|
||||
url(r'^donate', static_views.index),
|
||||
url(r'^copyleft-compliance', static_views.index,
|
||||
{'fundraiser_sought' : 'vmware-match-0'}),
|
||||
url(r'^copyleft-compliance', static_views.index, {'fundraiser_sought': 'vmware-match-0'}),
|
||||
url(r'^learn', static_views.index),
|
||||
url(r'^press', static_views.index),
|
||||
url(r'^projects', static_views.index),
|
||||
url(r'^GiveUpGitHub', static_views.index),
|
||||
url(r'^npoacct', static_views.index,
|
||||
{'fundraiser_sought' : 'npoacct'}),
|
||||
url(r'^npoacct', static_views.index, {'fundraiser_sought': 'npoacct'}),
|
||||
url(r'^contractpatch', include('conservancy.apps.contractpatch.urls')),
|
||||
url(r'^overview', static_views.index),
|
||||
url(r'^privacy-policy', static_views.index),
|
||||
|
|
Loading…
Reference in a new issue