Skip to content

Commit 83fd75f

Browse files
authored
Marvin: Fix deployDataCenter's cleanup (#7521)
1 parent 44024a8 commit 83fd75f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tools/marvin/marvin/deployDataCenter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1133,7 +1133,7 @@ def removeDataCenter(self):
11331133
print("\n====DeployDC: CleanUp Started====")
11341134
ret = FAILED
11351135
if self.__dcCfgFile:
1136-
file_to_read = open(self.__dcCfgFile, 'r')
1136+
file_to_read = open(self.__dcCfgFile, 'rb')
11371137
if file_to_read:
11381138
self.__dcCfg = pickle.load(file_to_read)
11391139
if self.__dcCfg:

0 commit comments

Comments
 (0)