File tree 1 file changed +5
-7
lines changed 1 file changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -563,8 +563,6 @@ def main(test=False):
563
563
# dist.install(pack)
564
564
# dist.uninstall(pack)
565
565
else :
566
- bold = "\033 [1m"
567
- unbold = "\033 [0m"
568
566
registerWinPythonHelp = f"Register distribution: associate file extensions, icons and context menu with this WinPython"
569
567
570
568
unregisterWinPythonHelp = f"Unregister distribution: de-associate file extensions, icons and context menu from this WinPython"
@@ -613,38 +611,38 @@ def main(test=False):
613
611
action = "store_const" ,
614
612
const = True ,
615
613
default = False ,
616
- help = f"list packages matching the given [optionnal] package expression: { unbold } wppm -ls{ unbold } , { unbold } wppm -ls pand{ unbold } " ,
614
+ help = f"list packages matching the given [optionnal] package expression: wppm -ls, wppm -ls pand" ,
617
615
)
618
616
parser .add_argument (
619
617
"-p" ,
620
618
dest = "pipdown" ,
621
619
action = "store_const" ,
622
620
const = True ,
623
621
default = False ,
624
- help = f"show Package dependancies of the given package[option]: { unbold } wppm -p pandas[test]{ unbold } " ,
622
+ help = f"show Package dependancies of the given package[option]: wppm -p pandas[test]" ,
625
623
)
626
624
parser .add_argument (
627
625
"-r" ,
628
626
dest = "pipup" ,
629
627
action = "store_const" ,
630
628
const = True ,
631
629
default = False ,
632
- help = f"show Reverse dependancies of the given package[option]: { unbold } wppm -r pytest[test]{ unbold } " ,
630
+ help = f"show Reverse dependancies of the given package[o
A55F
ption]: wppm -r pytest[test]" ,
633
631
)
634
632
parser .add_argument (
635
633
"-l" ,
636
634
dest = "levels" ,
637
635
type = int ,
638
636
default = 2 ,
639
- help = f"show 'LEVELS' levels of dependancies of the package, default is 2: { unbold } wppm -p pandas -l1{ unbold } " ,
637
+ help = f"show 'LEVELS' levels of dependancies of the package, default is 2: wppm -p pandas -l1" ,
640
638
)
641
639
parser .add_argument (
642
640
"-lsa" ,
643
641
dest = "all" ,
644
642
action = "store_const" ,
645
643
const = True ,
646
644
default = False ,
647
- help = f"list details of package names matching given regular expression: { unbold } wppm -lsa pandas -l1{ unbold } " ,
645
+ help = f"list details of package names matching given regular expression: wppm -lsa pandas -l1" ,
648
646
)
649
647
parser .add_argument (
650
648
"-t" ,
You can’t perform that action at this time.
0 commit comments