summaryrefslogtreecommitdiff
path: root/SoftwareProperties
diff options
context:
space:
mode:
Diffstat (limited to 'SoftwareProperties')
-rw-r--r--SoftwareProperties/aptsources.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/SoftwareProperties/aptsources.py b/SoftwareProperties/aptsources.py
index 1c8273f2..b32b222e 100644
--- a/SoftwareProperties/aptsources.py
+++ b/SoftwareProperties/aptsources.py
@@ -131,11 +131,6 @@ class SourceEntry:
# disabled, add a "#"
if string.strip(self.line)[0] != "#":
self.line = "#" + self.line
- def get_disabled(self):
- return not self.disabled
- def set_disabled(self, new_value):
- return self.set_enbaled(not new_value)
- disabled = property(get_disabled, set_disabled)
def str(self):
""" return the current line as string """