# | Line 1 | Line 1 | |
---|---|---|
1 | #!/usr/bin/env python | |
2 | ||
3 | < | import sys, os, string |
3 | > | import sys |
4 | ||
5 | class CondorGLoggingInfo: | |
6 | def __init__(self) : | |
# | Line 37 | Line 37 | class CondorGLoggingInfo: | |
37 | msg = line.split('\"')[-2] | |
38 | break | |
39 | ||
40 | < | if msg.find('authentication with the remote server failed') : |
40 | > | if msg.find('authentication with the remote server failed')>=0 : |
41 | self.category = self._categories[2] | |
42 | else : | |
43 | self.category = self._categories[0] |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |