[GH-ISSUE #66] passwords with special characters are getting interpolated by configparser #58

Closed
opened 2026-02-25 20:34:33 +03:00 by kerem · 1 comment
Owner

Originally created by @RMHogervorst on GitHub (Sep 28, 2020).
Original GitHub issue: https://github.com/B16f00t/whapa/issues/66

The configparser does interpolation of values automatically and it messes up the process
when you have special characters.

A solution is to initialize the class with interpolation set to none, example whagodri.py line 55

def getConfigs():
    global gmail, passw, celnumbr
    config = ConfigParser(interpolation=None)
Originally created by @RMHogervorst on GitHub (Sep 28, 2020). Original GitHub issue: https://github.com/B16f00t/whapa/issues/66 The configparser does interpolation of values automatically and it messes up the process when you have special characters. A solution is to initialize the class with interpolation set to none, example whagodri.py line 55 ``` def getConfigs(): global gmail, passw, celnumbr config = ConfigParser(interpolation=None) ```
kerem closed this issue 2026-02-25 20:34:33 +03:00
Author
Owner

@B16f00t commented on GitHub (Sep 30, 2020):

Thanks for the advice, I'll change it. Fix v1.21

<!-- gh-comment-id:701303106 --> @B16f00t commented on GitHub (Sep 30, 2020): Thanks for the advice, I'll change it. Fix v1.21
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/whapa#58
No description provided.