Skip to content
Snippets Groups Projects
Unverified Commit 974096fc authored by dnns01's avatar dnns01 Committed by GitHub
Browse files

Merge pull request #2 from SaelDE/patch-2

bugfix: str can't be int
parents 24c08c51 927ab343
No related branches found
No related tags found
No related merge requests found
......@@ -25,7 +25,7 @@ pipi_votes = {}
VOTE_DELAY_END = int(os.getenv("VOTE_DELAY_END"))
VOTE_DELAY_INTERIM = int(os.getenv("VOTE_DELAY_INTERIM"))
VOTE_MIN_VOTES = int(os.getenv("VOTE_MIN_VOTES"))
VOTE_COLOR = int(os.getenv("VOTE_COLOR"))
VOTE_COLOR = os.getenv("VOTE_COLOR")
VOTE_PLUS = os.getenv("VOTE_PLUS")
VOTE_MINUS = os.getenv("VOTE_MINUS")
VOTE_NEUTRAL = os.getenv("VOTE_NEUTRAL")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment