We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The locale params seems not working properly:
seeder = Seed.seeder(locale="<code>") seeder.faker.locales returns the default value ['en_US'] and the passed one isn't setted.
seeder = Seed.seeder(locale="<code>")
seeder.faker.locales
The image below exemplify it better.
The text was updated successfully, but these errors were encountered:
It's happend from this line
django-seed/django_seed/__init__.py
Line 42 in 077398a
when called cls.faker(codename=code), argument 'locale' is None by default. Next at cls.fakers[code] = Faker(locale) , set to default locale
Line 34 in 077398a
Sorry, something went wrong.
No branches or pull requests
The locale params seems not working properly:
seeder = Seed.seeder(locale="<code>")
seeder.faker.locales
returns the default value ['en_US'] and the passed one isn't setted.The image below exemplify it better.
The text was updated successfully, but these errors were encountered: