stripe connectにて子ユーザーの本人確認提出formを作成していまいす。
このようなエラーが返ってきます。
画像自体はDBに保存されているのですが、指定方法がわかりません。
FileNotFoundError at /
[Errno 2] No such file or directory: 'media/stripeImg/stripe_img'
python
1 2models.py 3 class User(AbstractBaseUser, PermissionsMixin): 4 stripe_img=models.ImageField(upload_to='stripeImg/',blank=True, null=True) 5 6 7views.py 8 with open('media/stripeImg/stripe_img'←ここの指定がわからない, 'rb') as fp: 9 stripe.File.create( 10 file=fp, 11 purpose='dispute_evidence', 12 stripe_account=acct_id 13 )