Commit d0414c3d authored by John Davis's avatar John Davis
Browse files

Fix check for anonymous

parent 2585d1e6
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"))