We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17e1bb0 commit 655a89fCopy full SHA for 655a89f
src/cfengine_cli/deptool.py
@@ -266,11 +266,7 @@ def deps_list(self, ref="master"):
266
# list(only_deps) = ["lcov", "pthreads-w32 libgnurx"]
267
# to "flattern" it we first join using spaces and then split on spaces
268
# in the middle we also do some clean-ups
269
- only_deps = (
270
- " ".join(only_deps)
271
- .replace("libgcc ", "")
272
- .split(" ")
273
- )
+ only_deps = " ".join(only_deps).replace("libgcc ", "").split(" ")
274
# now only_deps looks like this: ["lcov", "pthreads-w32", "libgnurx"]
275
log.debug(pretty(only_deps))
276
only_deps = sorted(only_deps)
0 commit comments