From 0db458e461a94393a6e792d9d3c6a7cc69bb45b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Wed, 28 Dec 2022 08:56:13 +0700 Subject: [PATCH] xbps-cycles: fix a typo --- common/scripts/xbps-cycles.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/scripts/xbps-cycles.py b/common/scripts/xbps-cycles.py index dbfd538235c..9c0c128e000 100755 --- a/common/scripts/xbps-cycles.py +++ b/common/scripts/xbps-cycles.py @@ -87,7 +87,7 @@ def find_cycles(depmap, xbpsdir): # Any of the dependencies here contributes to a cycle p = min(deps) if len(deps) > 1: - print('Mulitpath: {} -> {}, choosing first'.format(p, deps)) + print('Multipath: {} -> {}, choosing first'.format(p, deps)) if cycles: print('Cycle: ' + ' -> '.join(cycles) + '\n')