This file is indexed.

/usr/share/pyshared/hotwire_ui/adaptors/__init__.py is in hotwire 0.721-2.

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
from hotwire.sysdep import is_unix,is_windows
from hotwire.sysdep.fs import Filesystem

def load():
    if is_unix():
        import hotwire_ui.adaptors.aliases_unix
        fs = Filesystem.getInstance()
        if fs.executable_on_path('hotwire-ssh'):
            import hotwire_ui.adaptors.ssh
        if fs.executable_on_path('hotwire-sudo'):
            import hotwire_ui.adaptors.sudo
        import hotwire.sysdep.unix_completers
    
    import hotwire_ui.adaptors.edit
    import hotwire_ui.adaptors.view