Skip to content

Commit

Permalink
Do not check if the key is being deleted.
Browse files Browse the repository at this point in the history
git-svn-id: svn://cherokee-project.com/CTK/trunk@4422 5dc97367-97f1-0310-9951-d761b3857238
  • Loading branch information
alobbs committed Mar 8, 2010
1 parent 92c0418 commit e6ba242
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CTK/Server.py
Expand Up @@ -56,6 +56,9 @@ def Validate (self):

for n in range(len(self.post[key])):
val = self.post[key][n]
if not val:
continue

try:
tmp = func (val)
except Exception, e:
Expand Down

0 comments on commit e6ba242

Please sign in to comment.