Skip to content

Commit 1e43f6d

Browse files
committed
change ally
1 parent 2e6d45d commit 1e43f6d

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

apps/dev/fixtures/avatar.jpg

53 KB
Loading

apps/dev/fixtures/sergio.jpg

-61.5 KB
Binary file not shown.

apps/dev/management/commands/dbload.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -71,16 +71,16 @@ def add_allies():
7171
email='some.mail@domain.com',
7272
).save()
7373

74-
photo_path = Path(settings.BASE_DIR) / 'apps/dev/fixtures/sergio.jpg'
74+
photo_path = Path(settings.BASE_DIR) / 'apps/dev/fixtures/avatar.jpg'
7575
with photo_path.open('rb') as fin:
7676
photo = UploadedFile(fin, name=photo_path.name)
7777
Ally(
78-
name='Sergio',
78+
name='Un aliado mas',
7979
description='El aliado 2 no es malo, hace lo que puede',
8080
logo=photo,
81-
url='https://sdelquin.me/',
82-
twitter='https://twitter.com/sdelquin',
83-
email='sdelquin@gmail.com',
81+
url='https://domain.me/',
82+
twitter='https://twitter.com/username',
83+
email='someone@gmail.com',
8484
).save()
8585

8686

0 commit comments

Comments
 (0)