Codebase list python-castellan / 59e28a4
Fixes all current typo errors on Castellan project. Change-Id: Ide979620ac68463951e6a7f09073d41c6d791076 Dung Ha 7 years ago
2 changed file(s) with 2 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
5858 config_to_load.append(main_config)
5959
6060 TEST_CONF(
61 (), # Required to load an anonymous config
61 (), # Required to load an anonymous configuration
6262 default_config_files=config_to_load
6363 )
6464
211211 symbols = ''.join(symbolgroups)
212212 password.extend([random.choice(symbols) for _i in range(length)])
213213
214 # finally shuffle to ensure first x characters aren't from a
214 # Finally, shuffle to ensure first x characters aren't from a
215215 # predictable group
216216 random.shuffle(password)
217217