Advertisement
Guest User

Untitled

a guest
Jan 12th, 2016
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. BRANCH: develop TIP: d68c6d05fe02
  2. PROCESS: ./scripts/noc-web.py
  3. ERROR FINGERPRINT: b274cfde-5316-5e97-b2ce-d0e94917368c
  4. WORKING DIRECTORY: /opt/noc
  5. EXCEPTION: <type 'exceptions.ValueError'> Not a boolean: fasle
  6. START OF TRACEBACK
  7. ------------------------------------------------------------------------
  8. File: ../../usr/lib64/python2.7/ConfigParser.py (Line: 370)
  9. Function: getboolean
  10. 363
  11. 364 _boolean_states = {'1': True, 'yes': True, 'true': True, 'on': True,
  12. 365 '0': False, 'no': False, 'false': False, 'off': False}
  13. 366
  14. 367 def getboolean(self, section, option):
  15. 368 v = self.get(section, option)
  16. 369 if v.lower() not in self._boolean_states:
  17. 370 ==> raise ValueError, 'Not a boolean: %s' % v
  18. 371 return self._boolean_states[v.lower()]
  19. 372
  20. 373 def optionxform(self, optionstr):
  21. 374 return optionstr.lower()
  22. 375
  23. 376 def has_option(self, section, option):
  24. Variables:
  25. self = <ConfigParser.SafeConfigParser instance at 0x4e0f518>
  26. section = 'ip_discovery'
  27. option = 'enabled'
  28. v = 'fasle'
  29. ------------------------------------------------------------------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement