Commit 1e255a72 by Toshio Kuratomi

Python3 fix

parent 25ac4cce
......@@ -21,7 +21,9 @@ from ansible.errors import AnsibleParserError
import json
class MockFile(file):
from io import FileIO
class MockFile(FileIO):
def __init__(self, ds, method='json'):
self.ds = ds
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment