File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 82
82
number_date = 10000 * int (str_result [0 ]) + 100 * int (str_result [1 ]) + int (str_result [2 ])
83
83
if (number_date > start_date ):
84
84
print ("* [PR #{0} {1}]({2})" .format (entry ["number" ], entry ["title" ],
85
- entry ["html_url" ]))
85
+ entry ["html_url" ]))
86
86
else :
87
87
all_done = True
88
88
break
102
102
number_date = 10000 * int (str_result [0 ]) + 100 * int (str_result [1 ]) + int (str_result [2 ])
103
103
if (number_date > start_date ):
104
104
print ("* [PR #{0} {1}]({2})" .format (entry ["number" ], entry ["title" ],
105
- entry ["html_url" ]))
105
+ entry ["html_url" ]))
106
106
else :
107
107
all_done = True
108
108
break
131
131
labels = entry ["labels" ]
132
132
if (labels ):
133
133
print ("* [Github {0} #{1} {2}]({3})" .format (labels [0 ]["name" ], entry ["number" ],
134
- entry ["title" ], entry ["html_url" ]))
134
+ entry ["title" ], entry ["html_url" ]))
135
135
else :
136
136
print ("* [Github issue #{0} {1}]({2})" .format (entry ["number" ], entry ["title" ],
137
- entry ["html_url" ]))
137
+ entry ["html_url" ]))
138
138
else :
139
139
all_done = True
140
140
break
183
183
for label in entry ["labels" ]:
184
184
if label ["name" ] == "bug" :
185
185
print ("* [Github bug #{0} {1}]({2})" .format (entry ["number" ], entry ["title" ],
186
- entry ["html_url" ]))
186
+ entry ["html_url" ]))
187
187
188
188
# ------------------------------------------------------------------------------------------------ #
189
189
# End github.api.py
You can’t perform that action at this time.
0 commit comments