File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -140,7 +140,7 @@ def check_package_groups(packages: List[ACBSPackageInfo]):
140140 logging .error ('Package {} (in {}) has a different sequential order (#{}) after dependency resolution (should be #{})' .format (
141141 pkg .name , base_slug , pkg .group_seq , groups_seen [base_slug ] + 1 ))
142142 logging .error ('This might indicate a dependency cycle between the sub-packages (needs bootstrapping?) ...' )
143- logging .error ('... or maybe the sub-package should be named {}-{:02d }' .format (pkg . name , groups_seen [base_slug ] + 1 ))
143+ logging .error ('... or maybe the sub-package should be named {:02d }-{}' .format (groups_seen [base_slug ] + 1 , pkg . name ))
144144 logging .error ('Please check which situation this package is in and fix it.' )
145145 raise ValueError ('Specified sub-package order contradicts with the dependency resolution results' )
146146 else :
You can’t perform that action at this time.
0 commit comments