Skip to content

Commit 547ade7

Browse files
ctruedenhinerm
andcommitted
github.py: fix bug in main CLI function
The _json field was reworked as _items. Co-authored-by: Mark Hiner <[email protected]>
1 parent 9175fa5 commit 547ade7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

github.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,4 +122,4 @@ def _download_page(self, url, query):
122122
query = "+".join(sys.argv[1:])
123123
ghi = GitHubIssues()
124124
ghi.download(query)
125-
print(json.dumps(ghi._json, sort_keys=True, indent=4))
125+
print(json.dumps(ghi._items, sort_keys=True, indent=4))

0 commit comments

Comments
 (0)