Skip to content

Commit bdadf2b

Browse files
committed
Python: Fix warnings
1 parent 4927f00 commit bdadf2b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/ql/lib/semmle/python/frameworks/Django.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2650,7 +2650,7 @@ module PrivateDjango {
26502650
DjangoFileFieldUploadToFunctionFilenameParam() {
26512651
exists(DataFlow::CallCfgNode call, DataFlow::Node uploadToArg, Function func |
26522652
this.getParameter() = func.getArg(1) and
2653-
call = django::db::models::FileField::subclassRef().getACall() and
2653+
call = DjangoImpl::DB::Models::FileField::subclassRef().getACall() and
26542654
uploadToArg in [call.getArg(2), call.getArgByName("upload_to")] and
26552655
uploadToArg = poorMansFunctionTracker(func)
26562656
)

0 commit comments

Comments
 (0)