Fix indentation in settings and urls modules

This commit is contained in:
Ben Sturmfels 2023-10-20 12:47:30 +11:00
parent 15ce31eedb
commit e9bdb18b7e
Signed by: bsturmfels
GPG key ID: 023C05E2C9C068F0
2 changed files with 28 additions and 28 deletions

View file

@ -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

View file

@ -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),