Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall
diff options
context:
space:
mode:
authorAnton Hvornum <anton.feeds+github@gmail.com>2020-07-06 22:52:54 +0200
committerAnton Hvornum <anton.feeds+github@gmail.com>2020-07-06 22:52:54 +0200
commit7545b128d894f0654c252152d41cc64b8fcedd4c (patch)
tree18bd36bbdd7389d4a27c1aadee9b9e603fe4a77b /archinstall
parentf8c337c3aecf4d9ae9fe3005f2721eda2d156b3c (diff)
Prepped readme for pypi. Also updated setup.py to reflect a better project name when uploading to pypi.
Diffstat (limited to 'archinstall')
-rw-r--r--archinstall/lib/profiles.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archinstall/lib/profiles.py b/archinstall/lib/profiles.py
index 653bc72b..bea17d44 100644
--- a/archinstall/lib/profiles.py
+++ b/archinstall/lib/profiles.py
@@ -3,7 +3,7 @@ from collections import OrderedDict
from .general import multisplit, sys_command, log
from .exceptions import *
-UPSTREAM_URL = 'https://raw.githubusercontent.com/Torxed/archinstall/annotations/profiles'
+UPSTREAM_URL = 'https://raw.githubusercontent.com/Torxed/archinstall/master/profiles'
def grab_url_data(path):
safe_path = path[:path.find(':')+1]+''.join([item if item in ('/', '?', '=', '&') else urllib.parse.quote(item) for item in multisplit(path[path.find(':')+1:], ('/', '?', '=', '&'))])