win32/acls - fix unicode

This commit is contained in:
Oleksii Shevchuk 2018-10-25 20:41:49 +03:00
parent cb3be0a6c0
commit 694871e931
1 changed files with 2 additions and 2 deletions

View File

@ -1480,11 +1480,11 @@ def getfileowneracls(path):
if name:
if domain:
trustee = '{}\\{} ({})'.format(
trustee = u'{}\\{} ({})'.format(
domain, name, sid
)
else:
trustee = '{} ({})'.format(
trustee = u'{} ({})'.format(
name, sid
)