remove %s old formatting style (last bits)

This commit is contained in:
Philip Sargent 2023-01-02 22:26:33 +00:00
parent 7738b2836e
commit 822965ebe5
2 changed files with 1 additions and 2 deletions

View File

@ -862,7 +862,7 @@ class LoadingSurvex():
print(f' ! Failed to find cave for {cavepath.lower()}')
else:
# not a cave, but that is fine.
# print(' ! No regex(standard identifier) cave match for %s' % cavepath.lower())
# print(f' ! No regex(standard identifier) cave match for {cavepath.lower()}')
return None
def GetSurvexDirectory(self, headpath):

View File

@ -212,7 +212,6 @@ trogglepatterns = [
# do NOT allow DIR_ROOT prefix to all urls
urlpatterns = [
# re_path('^%s' % settings.DIR_ROOT, include(trogglepatterns))
re_path('', include(trogglepatterns))
]