We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27db28a commit c7b8142Copy full SHA for c7b8142
SharedProcessors/JSON.py SharedProcessors/JSONURLGetter.pySharedProcessors/JSON.py renamed to SharedProcessors/JSONURLGetter.py
@@ -19,10 +19,10 @@
19
20
from autopkglib import URLGetter
21
22
-__all__ = ["JSON"]
+__all__ = ["JSONURLGetter"]
23
24
25
-class JSON(URLGetter):
+class JSONURLGetter(URLGetter):
26
"""Parse JSON into usable autopkg variables."""
27
28
description = __doc__
@@ -49,5 +49,5 @@ def main(self):
49
50
51
if __name__ == "__main__":
52
- PROCESSOR = JSON()
+ PROCESSOR = JSONURLGetter()
53
PROCESSOR.execute_shell()
0 commit comments