Skip to content

Environment canonicalization bugs #2326

Closed
@JeremieMelo

Description

@JeremieMelo

line 1346
for key, val in env:
I don't think this works, because you cannot iterate dict like this, you have to write like this :
for key, val in env.items() rights?

(Edit by @effigies):
From #2327:

line 1350:
val = key.encode('utf-8')
???? I think it should be:
val = val.encode('utf-8')

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions