We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47e31b6 commit 667d50aCopy full SHA for 667d50a
1 file changed
user_sync/config.py
@@ -152,7 +152,11 @@ def load_invocation_options(self):
152
raise AssertionException('You cannot specify --adobe-only-user-action when using "push" strategy')
153
self.logger.info("Strategy push: ignoring default adobe-only-user-action")
154
else:
155
- adobe_action_spec = self.args['adobe_only_user_action'] or options['adobe_only_user_action']
+ if self.args['adobe_only_user_action']:
156
+ adobe_action_spec = self.args['adobe_only_user_action']
157
+ options['adobe_only_user_action'] = self.args['adobe_only_user_action']
158
+ else:
159
+ adobe_action_spec = options['adobe_only_user_action']
160
adobe_action = user_sync.helper.normalize_string(adobe_action_spec[0])
161
if adobe_action == 'preserve':
162
pass # no option settings needed
0 commit comments