From 74480bcba6f48a3b8b87131c2a3fe00d962bc83b Mon Sep 17 00:00:00 2001 From: oxmc <67136658+oxmc@users.noreply.github.com> Date: Sat, 31 Dec 2022 04:46:08 -0800 Subject: [PATCH] Update QuestAssetGenerator.py --- QuestAssetGenerator.py | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/QuestAssetGenerator.py b/QuestAssetGenerator.py index f7b6466..0116b25 100644 --- a/QuestAssetGenerator.py +++ b/QuestAssetGenerator.py @@ -1,11 +1,4 @@ -import argparse -import datetime -import os -import requests -import shutil -import subprocess -import sys -import zipfile +import argparse, datetime, os, requests, shutil, subprocess, sys, zipfile from github import Github # pip install PyGithub @@ -42,7 +35,7 @@ def main(): # Instantiate github client g = Github(args.access_token) - repo = g.get_user().get_repo('QuestAppLauncher_Assets') + repo = g.get_user("HooverHigh").get_repo('QuestAppLauncher_Assets') # Set up temp dir folder_path_temp = os.path.abspath(TEMP_DIR); @@ -144,4 +137,4 @@ def launch_executable(args, bin_path): except Exception as e: raise type(e)(str.format(str(e) + " when calling '%s'" % (bin_path))) -main() \ No newline at end of file +main()