Rev 568 | Rev 604 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 568 | Rev 573 | ||
|---|---|---|---|
| Line 287... | Line 287... | ||
| 287 | return True |
287 | return True |
| 288 | else: |
288 | else: |
| 289 | if oper== '=' and condval != defaults[condname]: |
289 | if oper== '=' and condval != defaults[condname]: |
| 290 | return False |
290 | return False |
| 291 | if oper== '!=' and condval == defaults[condname]: |
291 | if oper== '!=' and condval == defaults[condname]: |
| 292 | print 2 |
- | |
| 293 | return False |
292 | return False |
| 294 | if ctype=='cnf': |
293 | if ctype=='cnf': |
| 295 | return False |
294 | return False |
| 296 | return True |
295 | return True |
| 297 | 296 | ||