diff options
author | substantialnoninfringinguser <substantialnoninfringinguser@gmail.com> | 2009-07-03 05:31:49 +0100 |
---|---|---|
committer | substantialnoninfringinguser <substantialnoninfringinguser@gmail.com> | 2009-07-03 05:31:49 +0100 |
commit | 8446047ab246b186f0404a1f8acbf719a6355a78 (patch) | |
tree | b5b9a1b32c82383a1f6088bd4c4b97bacf933875 /parsers/people.py | |
parent | dc19150eba28de83e06c47d6235c07309f92b36d (diff) | |
download | troggle-8446047ab246b186f0404a1f8acbf719a6355a78.tar.gz troggle-8446047ab246b186f0404a1f8acbf719a6355a78.tar.bz2 troggle-8446047ab246b186f0404a1f8acbf719a6355a78.zip |
[svn] Brief code cleanup.
Diffstat (limited to 'parsers/people.py')
-rw-r--r-- | parsers/people.py | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/parsers/people.py b/parsers/people.py index a74e827..fd269e6 100644 --- a/parsers/people.py +++ b/parsers/people.py @@ -3,18 +3,7 @@ from django.conf import settings import core.models as models import csv, re, datetime, os, shutil -from troggle.save_carefully import save_carefully - -# Julian: the below code was causing errors and it seems like a duplication of the above. Hope I haven't broken anything by commenting it. -Aaron -# -# if name in expoers2008: -# print "2008:", name -# expomissing.discard(name) # I got an error which I think was caused by this -- python complained that a set changed size during iteration. -# yo = models.Expedition.objects.filter(year = "2008")[0] -# pyo = models.PersonExpedition(person = pObject, expedition = yo, is_guest=is_guest) -# pyo.save() - - +from utils import save_carefully def saveMugShot(mugShotPath, mugShotFilename, person): if mugShotFilename.startswith(r'i/'): #if filename in cell has the directory attached (I think they all do), remove it @@ -39,7 +28,7 @@ def saveMugShot(mugShotPath, mugShotFilename, person): mugShotObj.save() def parseMugShotAndBlurb(personline, header, person): - #create mugshot Photo instance + """create mugshot Photo instance""" mugShotFilename=personline[header["Mugshot"]] mugShotPath = os.path.join(settings.EXPOWEB, "folk", mugShotFilename) if mugShotPath[-3:]=='jpg': #if person just has an image, add it |