passphera-core 0.3.3__tar.gz → 0.3.4__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {passphera-core-0.3.3 → passphera-core-0.3.4}/PKG-INFO +1 -1
- {passphera-core-0.3.3 → passphera-core-0.3.4}/passphera_core.egg-info/PKG-INFO +1 -1
- {passphera-core-0.3.3 → passphera-core-0.3.4}/setup.py +1 -1
- {passphera-core-0.3.3 → passphera-core-0.3.4}/README.md +0 -0
- {passphera-core-0.3.3 → passphera-core-0.3.4}/passphera_core/__init__.py +0 -0
- {passphera-core-0.3.3 → passphera-core-0.3.4}/passphera_core/exceptions.py +0 -0
- {passphera-core-0.3.3 → passphera-core-0.3.4}/passphera_core/generator.py +2 -2
- {passphera-core-0.3.3 → passphera-core-0.3.4}/passphera_core.egg-info/SOURCES.txt +0 -0
- {passphera-core-0.3.3 → passphera-core-0.3.4}/passphera_core.egg-info/dependency_links.txt +0 -0
- {passphera-core-0.3.3 → passphera-core-0.3.4}/passphera_core.egg-info/top_level.txt +0 -0
- {passphera-core-0.3.3 → passphera-core-0.3.4}/setup.cfg +0 -0
File without changes
|
File without changes
|
File without changes
|
@@ -222,9 +222,9 @@ class PasswordGenerator:
|
|
222
222
|
self._password = self.generate_raw_password()
|
223
223
|
self._algorithm_name = old_algorithm
|
224
224
|
self._password = self.generate_raw_password()
|
225
|
-
for char, replacement in self._chars_replacements.items():
|
226
|
-
self._password = self._password.replace(char, replacement)
|
227
225
|
for char in self._password:
|
228
226
|
if char in self._text:
|
229
227
|
self._password = self._password.replace(char, char.upper())
|
228
|
+
for char, replacement in self._chars_replacements.items():
|
229
|
+
self._password = self._password.replace(char, replacement)
|
230
230
|
return self._password
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|