Skip to content

Commit

Permalink
Imports from vendored win_lgpo instead of upstream module
Browse files Browse the repository at this point in the history
  • Loading branch information
lorengordon committed May 11, 2023
1 parent 651f1f6 commit 2646eb7
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions _modules/ash_win_lgpo.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,16 @@

import salt.utils.files

from salt.modules.win_lgpo import (
from .win_lgpo import (
_policy_info, _transform_value, _read_regpol_file, _write_regpol_data,
_regexSearchRegPolData,
)

from salt.ext import six
try:
from salt.ext import six
except ImportError:
import six

from salt.utils.functools import namespaced_function as _namespaced_function
from salt.utils.stringutils import to_num
from salt.utils.win_reg import Registry
Expand Down

0 comments on commit 2646eb7

Please sign in to comment.