We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be28c0a commit d331f80Copy full SHA for d331f80
1 file changed
src/datafunctions.py
@@ -1127,7 +1127,7 @@ def build_cache(app_dir: Path) -> int:
1127
env_variables = read_env_file(config_path / '.env', ['SETS_CF_CLEARANCE', 'SETS_USER_AGENT'])
1128
requests_session = Session()
1129
if 'SETS_CF_CLEARANCE' in env_variables:
1130
- print(f'[Info] "SETS_CF_CLEARANCE" variable: "{env_variables["SETS_CF_CLEARANCE"]}"...')
+ print(f'[Info] "SETS_CF_CLEARANCE" variable: "{env_variables["SETS_CF_CLEARANCE"][:10]}"')
1131
requests_session.cookies.set_cookie(
1132
create_cookie(name='cf_clearance', value=env_variables['SETS_CF_CLEARANCE']))
1133
if 'SETS_USER_AGENT' in env_variables:
0 commit comments