Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
D
django
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
django
Commits
7372cdeb
Kaydet (Commit)
7372cdeb
authored
Eyl 24, 2015
tarafından
Tzu-ping Chung
Kaydeden (comit)
Tim Graham
Eyl 24, 2015
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed #25457 -- Improved formatting of password validation errors in management command output.
üst
a51070e7
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
changepassword.py
django/contrib/auth/management/commands/changepassword.py
+1
-1
createsuperuser.py
django/contrib/auth/management/commands/createsuperuser.py
+1
-1
test_management.py
tests/auth_tests/test_management.py
+1
-1
No files found.
django/contrib/auth/management/commands/changepassword.py
Dosyayı görüntüle @
7372cdeb
...
...
@@ -60,7 +60,7 @@ class Command(BaseCommand):
try
:
validate_password
(
p2
,
u
)
except
ValidationError
as
err
:
self
.
std
out
.
write
(
',
'
.
join
(
err
.
messages
))
self
.
std
err
.
write
(
'
\n
'
.
join
(
err
.
messages
))
count
+=
1
else
:
password_validated
=
True
...
...
django/contrib/auth/management/commands/createsuperuser.py
Dosyayı görüntüle @
7372cdeb
...
...
@@ -153,7 +153,7 @@ class Command(BaseCommand):
try
:
validate_password
(
password2
,
self
.
UserModel
(
**
fake_user_data
))
except
exceptions
.
ValidationError
as
err
:
self
.
stderr
.
write
(
'
,
'
.
join
(
err
.
messages
))
self
.
stderr
.
write
(
'
\n
'
.
join
(
err
.
messages
))
password
=
None
except
KeyboardInterrupt
:
...
...
tests/auth_tests/test_management.py
Dosyayı görüntüle @
7372cdeb
...
...
@@ -160,7 +160,7 @@ class ChangepasswordManagementCommandTestCase(TestCase):
abort_msg
=
"Aborting password change for user 'joe' after 3 attempts"
with
self
.
assertRaisesMessage
(
CommandError
,
abort_msg
):
command
.
execute
(
username
=
"joe"
,
stdout
=
self
.
stdout
,
stderr
=
self
.
stderr
)
self
.
assertIn
(
'This password is entirely numeric.'
,
self
.
std
out
.
getvalue
())
self
.
assertIn
(
'This password is entirely numeric.'
,
self
.
std
err
.
getvalue
())
def
test_that_changepassword_command_works_with_nonascii_output
(
self
):
"""
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment