This file is indexed.

/usr/lib/python2.7/dist-packages/gozerbot/users.py is in gozerbot 0.99.1-5.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
# gozerbot/users.py
#
#

from gozerbot.config import config

if config.get('db_driver') == "olddb":
    try:
        import gozerbot.database.db
        import gozerbot.dbusers
    except Exception, ex:
        handle_exception()
        rlog(100, 'users', 'an error has occured while trying to enable the mysql database')
        die()
    users = gozerbot.dbusers.Dbusers()
else:
    import gozerbot.sausers as sa
    users = sa.DbUsers()