Hello,

I'm trying to use mkdir to automatically create a user directory upon
successful account activation. I'm attempting to use a try except to
catch any error but I don't think I'm using it correctly. Thanks for
any help.

        if SHA1_RE.search(activation_key):
            try:
                profile = self.get(activation_key=activation_key)
            except self.model.DoesNotExist:
                return False
            if not profile.activation_key_expired():
                user = profile.user
                user.is_active = True
                user.save()
                profile.activation_key = self.model.ACTIVATED
                profile.save()
                try:
                    mkdir(MEDIA_ROOT + '/listings/' + user)
                except IOError:
                        print "could not create folder."
                return user
        return False
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to