mirror of
https://github.com/moparisthebest/SickRage
synced 2024-11-05 17:05:03 -05:00
4d41d881eb
Added in bugtracker class
5 lines
183 B
Python
5 lines
183 B
Python
import sickbeard
|
|
|
|
class BugTracker:
|
|
def submit_bug(self, title, error):
|
|
return sickbeard.gh.create_issue(title, error, labels=[sickbeard.gh().get_label(sickbeard.BRANCH)]) |