Python: Better text for getSourceType in Django

This commit is contained in:
Rasmus Wriedt Larsen
2021-03-22 01:39:19 +01:00
parent c6a69e1d6e
commit f800bf243f

View File

@@ -2393,7 +2393,7 @@ private module Django {
}
override string getSourceType() {
result = "django.http.request.HttpRequest (attribute on self in View class)"
result = "django HttpRequest from self.request in View class"
}
}
@@ -2413,7 +2413,7 @@ private module Django {
}
override string getSourceType() {
result = "django routed param from attribute on self in View class"
result = "django routed param from self.args/kwargs in View class"
}
}