Skip to content

Commit da5881c

Browse files
committed
Fix attribute maps order
Signed-off-by: Ivan Kanakarakis <[email protected]>
1 parent d2ab663 commit da5881c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/saml2/attribute_converter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def ac_factory(path=""):
6262
if path not in sys.path:
6363
sys.path.insert(0, path)
6464

65-
for fil in os.listdir(path):
65+
for fil in sorted(os.listdir(path)):
6666
if fil.endswith(".py"):
6767
mod = import_module(fil[:-3])
6868
for key, item in mod.__dict__.items():

0 commit comments

Comments
 (0)