File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -440,7 +440,7 @@ def generate_confs(
440
440
if group == keyword_auto :
441
441
group = expanded ['group' ] = grp .getgrgid (os .getgid ())[0 ]
442
442
443
- if admin_email is keyword_auto :
443
+ if admin_email == keyword_auto :
444
444
admin_email = expanded ['admin_email' ] = user
445
445
446
446
# Finalize a destination path up-front
@@ -449,13 +449,13 @@ def generate_confs(
449
449
450
450
# Expand any path information marked as "AUTO" based on the environment
451
451
# NOTE: we do NOT follow symlinks here as they should remain transparent
452
- if mig_code is keyword_auto :
452
+ if mig_code == keyword_auto :
453
453
mig_code = expanded ['mig_code' ] = os .path .abspath (os .path .join (
454
454
cmd_grpar_dir , 'mig' ))
455
- if mig_state is keyword_auto :
455
+ if mig_state == keyword_auto :
456
456
mig_state = expanded ['mig_state' ] = os .path .abspath (os .path .join (
457
457
cmd_grpar_dir , 'state' ))
458
- if mig_certs is keyword_auto :
458
+ if mig_certs == keyword_auto :
459
459
mig_certs = expanded ['mig_certs' ] = os .path .abspath (os .path .join (
460
460
cmd_grpar_dir , 'certs' ))
461
461
You can’t perform that action at this time.
0 commit comments