Skip to content

Commit

Permalink
things
Browse files Browse the repository at this point in the history
  • Loading branch information
Booplicate committed Jul 29, 2020
1 parent f0667da commit 98ce704
Show file tree
Hide file tree
Showing 8 changed files with 4,582 additions and 0 deletions.
4 changes: 4 additions & 0 deletions YouTube Music/game/Submods/YouTube Music/ytm_overrides.rpy
Original file line number Diff line number Diff line change
Expand Up @@ -385,6 +385,10 @@ init 100:

label "Music Menu"

init -999 python:
import os
os.environ["SSL_CERT_FILE"] = renpy.config.gamedir + "/python-packages/certifi/cacert.pem"

# AudioData support for RenPy 6.99.12
python early:
import io
Expand Down
3 changes: 3 additions & 0 deletions YouTube Music/game/python-packages/certifi/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from .core import where

__version__ = "2019.09.11"
Binary file not shown.
2 changes: 2 additions & 0 deletions YouTube Music/game/python-packages/certifi/__main__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
from certifi import where
print(where())
Binary file not shown.
4,558 changes: 4,558 additions & 0 deletions YouTube Music/game/python-packages/certifi/cacert.pem

Large diffs are not rendered by default.

15 changes: 15 additions & 0 deletions YouTube Music/game/python-packages/certifi/core.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# -*- coding: utf-8 -*-

"""
certifi.py
~~~~~~~~~~
This module returns the installation location of cacert.pem.
"""
import os


def where():
f = os.path.dirname(__file__)

return os.path.join(f, 'cacert.pem')
Binary file added YouTube Music/game/python-packages/certifi/core.pyc
Binary file not shown.

0 comments on commit 98ce704

Please sign in to comment.