コード例 #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
ファイル: github.py プロジェクト: 5l1v3r1/redalert-1
 def get_auth(self):
     d = sync_read_status_file()
     return [
         safe_read_dictionary(d, 'github_username'),
         safe_read_dictionary(d, 'github_password')
     ]
コード例 #4
0
ファイル: github.py プロジェクト: 5l1v3r1/redalert-1
 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")]