diff options
-rw-r--r-- | parsers/logbooks.py | 4 | ||||
-rw-r--r-- | settings.py | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/parsers/logbooks.py b/parsers/logbooks.py index bb7d009..82d7585 100644 --- a/parsers/logbooks.py +++ b/parsers/logbooks.py @@ -266,7 +266,7 @@ def LoadLogbooks(): ("1998", "1998/log.htm", Parseloghtml01),
("1997", "1997/log.htm", Parseloghtml01),
]
-# yearlinks = [ ("1997", "1997/log.htm", Parseloghtml01), ] #overwrite
+ #yearlinks = [ ("2001", "2001/log.htm", Parseloghtml01), ] #overwrite
for year, lloc, parsefunc in yearlinks:
expedition = models.Expedition.objects.filter(year = year)[0]
@@ -278,6 +278,6 @@ def LoadLogbooks(): # command line run through the loading stages
# you can comment out these in turn to control what gets reloaded
-LoadExpos()
LoadPersons()
+#LoadExpos()
#LoadPersons()
LoadLogbooks()
diff --git a/settings.py b/settings.py index e255c97..f6a9703 100644 --- a/settings.py +++ b/settings.py @@ -1,4 +1,4 @@ -from localsettingsserver import * +from localsettings import * # Django settings for troggle2 project. DEBUG = True |