-
-
Notifications
You must be signed in to change notification settings - Fork 83
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RecursionError: maximum recursion depth exceeded while calling a Python object #138
Comments
this works but i'm not sure if this will cause any issues def printDepends(packages, target, deptype, chip, indent, args):
chipstr = ""
if chip != None:
@@ -286,6 +558,8 @@ def printDepends(packages, target, deptype, chip, indent, args):
deps = p["dependencies"]
for key in deps:
dep = deps[key]
+ if key == p["id"]:
+ continue
type = ""
if "type" in dep:
type = dep["type"]
@@ -294,6 +568,7 @@ def printDepends(packages, target, deptype, chip, indent, args):
chip = dep["chip"]
printDepends(packages, key, type, chip, indent + " ", args) |
Related to #135 . From the manifest, the dependency chain is
But
|
This was referenced Sep 15, 2024
@huangqinjin have you encountered this issue: #139 |
@huangqinjin the issue got fixed after applying your pull request: #140 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @mstorsjo
Running this command gives error:
python vsdownload.py --accept-license --print-deps-tree Microsoft.VisualStudio.Workload.VCTools
The text was updated successfully, but these errors were encountered: