Skip to content

Commit f2b4c9f

Browse files
committed
Write irods_authentication_uid as an int
Signed-off-by: Peter Verraedt <peter@verraedt.be>
1 parent ab4d914 commit f2b4c9f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mango_auth/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def _format(val):
9797
config = dict(map(lambda kv: (kv[0], _format(kv[1])), config_template.items()))
9898

9999
if platform.system() == 'Windows':
100-
config["irods_authentication_uid"] = '1000'
100+
config["irods_authentication_uid"] = 1000
101101

102102
config.update(kwargs)
103103

0 commit comments

Comments
 (0)