Revision 3ccb3a64 lib/confd/querylib.py

b/lib/confd/querylib.py
63 63

  
64 64
    """
65 65
    status = constants.CONFD_REPL_STATUS_NOTIMPLEMENTED
66
    answer = 'not implemented'
66
    answer = "not implemented"
67 67
    return status, answer
68 68

  
69 69

  
......
80 80
    """
81 81
    if query is None:
82 82
      status = constants.CONFD_REPL_STATUS_OK
83
      answer = 'ok'
83
      answer = "ok"
84 84
    else:
85 85
      status = constants.CONFD_REPL_STATUS_ERROR
86
      answer = 'non-empty ping query'
86
      answer = "non-empty ping query"
87 87

  
88 88
    return status, answer
89 89

  

Also available in: Unified diff