Exemplo n.º 1
0
 def getReportedIssues(cls):
     i = safe_read_dictionary(sync_read_status_file(), 'issues')
     if i is None:
         i = ''
     return i.split()
Exemplo n.º 2
0
 def get_auth(self):
     d = sync_read_status_file()
     return [
         safe_read_dictionary(d, 'github_username'),
         safe_read_dictionary(d, 'github_password')
     ]
Exemplo n.º 3
0
 def get_auth(self):
     d = sync_read_status_file()
     return [
         safe_read_dictionary(d, 'github_username'),
         safe_read_dictionary(d, 'github_password')
     ]
Exemplo n.º 4
0
 def getReportedIssues(cls):
     i = safe_read_dictionary(sync_read_status_file(), 'issues')
     if i is None:
         i = ''
     return i.split()
Exemplo n.º 5
0
Arquivo: vso.py Projeto: 0x27/redalert
 def get_auth(self):
     d = sync_read_status_file()
     return [safe_read_dictionary(d, "vso_username"), safe_read_dictionary(d, "vso_password")]