Skip to content

Commit

Permalink
Fix MfciPolicy.py syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcChen46 committed Oct 29, 2024
1 parent dc11ef0 commit ebbdbb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MfciPkg/Application/MfciPolicy/MfciPolicy.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def get_system_info():
if Variable == "NextMfciPolicyNonce" or Variable == "CurrentMfciPolicyNonce":
print(f" {Variable} = {hex(int.from_bytes(data, byteorder='little', signed=False))}")
else:
print(f" {Variable} = \"{data.decode("utf16")[0:-1]}\"")
print(f" {Variable} = '{data.decode('utf16')[0:-1]}'")
return


Expand Down

0 comments on commit ebbdbb4

Please sign in to comment.