If I called the BMO API directly, I can get a legit depends list...
api_key = getpass.getpass("Enter Bugzilla API Key: ")
resp = requests.get('https://bugzilla.mozilla.org/rest/bug', params={'id': 'BUG_ID_WITH_DEPENDS', 'api_key': api_key})
If I use bugsy to get this, I doesn't seem to populate depends on the bug object...
api_key = getpass.getpass("Enter Bugzilla API Key: ")
bugzilla = bugsy.Bugsy(api_key=api_key)
bug = bugzilla.get(BUG_ID_WITH_DEPENDS)
If I called the BMO API directly, I can get a legit depends list...
api_key = getpass.getpass("Enter Bugzilla API Key: ")
resp = requests.get('https://bugzilla.mozilla.org/rest/bug', params={'id': 'BUG_ID_WITH_DEPENDS', 'api_key': api_key})
If I use bugsy to get this, I doesn't seem to populate depends on the bug object...
api_key = getpass.getpass("Enter Bugzilla API Key: ")
bugzilla = bugsy.Bugsy(api_key=api_key)
bug = bugzilla.get(BUG_ID_WITH_DEPENDS)