Suppr. ligne de debug

This commit is contained in:
Claude Paroz 2025-11-02 22:54:02 +01:00
parent 6a6ef5612f
commit 77a2c1d3f5
2 changed files with 2 additions and 1 deletions

2
.gitignore vendored
View file

@ -1,3 +1,5 @@
common/local_settings.py common/local_settings.py
db.sqlite3 db.sqlite3
__pycache__ __pycache__
/static
/media

View file

@ -10,5 +10,4 @@ class StaticViewSitemap(sitemaps.Sitemap):
return ["home", "presentation", "contact", "agenda"] return ["home", "presentation", "contact", "agenda"]
def location(self, item): def location(self, item):
import pdb; pdb.set_trace()
return reverse(item) return reverse(item)