Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/persistence/joke.py
diff options
context:
space:
mode:
Diffstat (limited to 'persistence/joke.py')
-rw-r--r--persistence/joke.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/persistence/joke.py b/persistence/joke.py
index 8523593..0af66b8 100644
--- a/persistence/joke.py
+++ b/persistence/joke.py
@@ -67,14 +67,6 @@ class Joke(object):
'''the country of the author'''
def get(self): return self.__joker_country
def set(self, value): self.__joker_country = value
-
- @PersistentProperty
- def show():
- '''should this joke be visible to others'''
- def default(self): return False
- def get(self): return self.__show
- def set(self, value): self.__show = value
-
def test_data(self):
#self.image = 'resources/knockknock.png'
@@ -86,7 +78,6 @@ Alex who?'''
self.joker = 'hummingbird'
self.joker_location = 'Cape Town'
self.joker_country = 'South Africa'
- self.show = True
return self