This file is indexed.

/usr/share/pyshared/SCRIBES/EncodingSystem/Manager.py is in scribes 0.4~r543-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
16
17
18
19
20
21
class Manager(object):

	def __init__(self, editor):
		editor.response()
		from Error.Trigger import Trigger
		Trigger(editor)
		from SupportedEncodings.Trigger import Trigger
		Trigger(editor)
		from FileEncodingsUpdater import Updater
		Updater(self, editor)
		from EncodingGuessListUpdater import Updater
		Updater(self, editor)
		from EncodingListUpdater import Updater
		Updater(self, editor)
		from ComboBoxData.Manager import Manager
		Manager(editor)
		editor.response()

	def format_encoding(self, encoding):
		from Utils import format_encoding
		return format_encoding(encoding)