|
@@ -1138,7 +1138,7 @@ class Utils(object): # pragma: no cover
|
|
''' Actually write the file contents to disk. This helps with mocking. '''
|
|
''' Actually write the file contents to disk. This helps with mocking. '''
|
|
|
|
|
|
with open(filename, 'w') as sfd:
|
|
with open(filename, 'w') as sfd:
|
|
- sfd.write(contents)
|
|
|
|
|
|
+ sfd.write(str(contents))
|
|
|
|
|
|
@staticmethod
|
|
@staticmethod
|
|
def create_tmp_file_from_contents(rname, data, ftype='yaml'):
|
|
def create_tmp_file_from_contents(rname, data, ftype='yaml'):
|