예제 #1
0
파일: github.py 프로젝트: 0x27/redalert
 def getReportedIssues(cls):
     i = safe_read_dictionary(sync_read_status_file(), 'issues')
     if i is None:
         i = ''
     return i.split()
예제 #2
0
파일: github.py 프로젝트: 0x27/redalert
 def get_auth(self):
     d = sync_read_status_file()
     return [
         safe_read_dictionary(d, 'github_username'),
         safe_read_dictionary(d, 'github_password')
     ]
예제 #3
0
 def get_auth(self):
     d = sync_read_status_file()
     return [
         safe_read_dictionary(d, 'github_username'),
         safe_read_dictionary(d, 'github_password')
     ]
예제 #4
0
 def getReportedIssues(cls):
     i = safe_read_dictionary(sync_read_status_file(), 'issues')
     if i is None:
         i = ''
     return i.split()
예제 #5
0
파일: vso.py 프로젝트: 0x27/redalert
 def get_auth(self):
     d = sync_read_status_file()
     return [safe_read_dictionary(d, "vso_username"), safe_read_dictionary(d, "vso_password")]