mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-01-20 10:26:44 +01:00
Fixed PEP E501
Signed-off-by: Dimitris Zlatanidis <d.zlatanidis@gmail.com>
This commit is contained in:
parent
6803c5aeb1
commit
45fc74ee84
1 changed files with 9 additions and 4 deletions
|
@ -102,7 +102,8 @@ class RepoInit(Utils):
|
||||||
if self.meta.arch == "x86_64":
|
if self.meta.arch == "x86_64":
|
||||||
arch = "64"
|
arch = "64"
|
||||||
self.mirror = (f"{self.def_repo_dict['slacke']}"
|
self.mirror = (f"{self.def_repo_dict['slacke']}"
|
||||||
f"slacke{self.meta.slacke_sub_repo[1:-1]}/slackware{arch}-{slack_ver()}/")
|
f"slacke{self.meta.slacke_sub_repo[1:-1]}/slackware"
|
||||||
|
f"{arch}-{slack_ver()}/")
|
||||||
|
|
||||||
def _init_salix(self):
|
def _init_salix(self):
|
||||||
arch = "i486"
|
arch = "i486"
|
||||||
|
@ -123,7 +124,8 @@ class RepoInit(Utils):
|
||||||
arch = "x86"
|
arch = "x86"
|
||||||
if self.meta.arch == "x86_64":
|
if self.meta.arch == "x86_64":
|
||||||
arch = "x86_64"
|
arch = "x86_64"
|
||||||
self.mirror = f"{self.def_repo_dict['msb']}{slack_ver()}/{self.meta.msb_sub_repo[1:-1]}/{arch}/"
|
self.mirror = (f"{self.def_repo_dict['msb']}{slack_ver()}/"
|
||||||
|
f"{self.meta.msb_sub_repo[1:-1]}/{arch}/")
|
||||||
|
|
||||||
def _init_csb(self):
|
def _init_csb(self):
|
||||||
arch = "x86"
|
arch = "x86"
|
||||||
|
@ -135,10 +137,13 @@ class RepoInit(Utils):
|
||||||
arch = ""
|
arch = ""
|
||||||
if self.meta.arch == "x86_64":
|
if self.meta.arch == "x86_64":
|
||||||
arch = "64"
|
arch = "64"
|
||||||
self.mirror = f"{self.def_repo_dict['connos']}slack-n-free{arch}-{slack_ver()}/"
|
self.mirror = (f"{self.def_repo_dict['connos']}slack-n-free"
|
||||||
|
f"{arch}-{slack_ver()}/")
|
||||||
|
|
||||||
def _init_mles(self):
|
def _init_mles(self):
|
||||||
arch = "32"
|
arch = "32"
|
||||||
if self.meta.arch == "x86_64":
|
if self.meta.arch == "x86_64":
|
||||||
arch = "64"
|
arch = "64"
|
||||||
self.mirror = f"{self.def_repo_dict['mles']}{self.meta.mles_sub_repo[1:-1]}-{slack_ver()}-{arch}bit/"
|
self.mirror = (f"{self.def_repo_dict['mles']}"
|
||||||
|
f"{self.meta.mles_sub_repo[1:-1]}-"
|
||||||
|
f"{slack_ver()}-{arch}bit/")
|
||||||
|
|
Loading…
Reference in a new issue