Unverified Commit cea7eb00 authored by John Davis's avatar John Davis Committed by GitHub
Browse files

Merge pull request #18364 from jdavcs/241_bug_reverse_bool

[24.1] Fix check for anonymous
parents 2585d1e6 d0414c3d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -476,4 +476,4 @@ class DictFileSourcesUserContext(FileSourcesUserContext, FileSourceDictifiable):

    @property
    def anonymous(self) -> bool:
        return bool(self._kwd.get("username"))
        return not bool(self._kwd.get("username"))