Skip to content

Value ending and starting with quote marks " or ' #123

@Hatell

Description

@Hatell

If I have value starting and ending with quote ' or " in .env -file then quotes are removed from value.

I have a password 'hello' and I would like to pass it to .env -file like this

PASS="'hello'"

This isn't possible because decouple.py:132 line strip all ' or " characters from begin and end of the string v.

v = v.strip('\'"')

Instead of that I would do the removing of quotes like this

v = v[1:-1]

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions