1.1 --- a/pymove3d.py Sat Jan 18 20:54:15 2014 +0100
1.2 +++ b/pymove3d.py Sat Jan 18 21:05:22 2014 +0100
1.3 @@ -21,7 +21,6 @@
1.4 babel = Babel(app)
1.5
1.6 def get_topmenue():
1.7 -
1.8 topmenue = [('/competition', _('Competition')),
1.9 ('/task', _('Task')),
1.10 ('/submission', _('Submission')),
2.1 --- a/sayings.py Sat Jan 18 20:54:15 2014 +0100
2.2 +++ b/sayings.py Sat Jan 18 21:05:22 2014 +0100
2.3 @@ -2,27 +2,27 @@
2.4
2.5 def get_saying():
2.6 sayings = [('The Zen of Python, by Tim Peters', '__Tim Peters, The Zen of Python'),
2.7 - ("Beautiful is better than ugly.", '__Tim Peters, The Zen of Python'),
2.8 - ("Explicit is better than implicit.", '__Tim Peters, The Zen of Python'),
2.9 - ("Simple is better than complex.", '__Tim Peters, The Zen of Python'),
2.10 - ("Complex is better than complicated.", '__Tim Peters, The Zen of Python'),
2.11 - ("Flat is better than nested.", '__Tim Peters, The Zen of Python'),
2.12 - ("Sparse is better than dense.", '__Tim Peters, The Zen of Python'),
2.13 - ("Readability counts.", '__Tim Peters, The Zen of Python'),
2.14 - ("Special cases aren't special enough to break the rules.", '__Tim Peters, The Zen of Python'),
2.15 - ("Although practicality beats purity.", '__Tim Peters, The Zen of Python'),
2.16 - ("Errors should never pass silently.", '__Tim Peters, The Zen of Python'),
2.17 - ("Unless explicitly silenced.", '__Tim Peters, The Zen of Python'),
2.18 - ("In the face of ambiguity, refuse the temptation to guess.", '__Tim Peters, The Zen of Python'),
2.19 - ("Although that way may not be obvious at first unless you're Dutch.", '__Tim Peters, The Zen of Python'),
2.20 - ("Now is better than never.", '__Tim Peters, The Zen of Python'),
2.21 - ("Although never is often better than *right* now.", '__Tim Peters, The Zen of Python'),
2.22 - ("If the implementation is hard to explain, it's a bad idea.", '__Tim Peters, The Zen of Python'),
2.23 - ("If the implementation is easy to explain, it may be a good idea.", '__Tim Peters, The Zen of Python'),
2.24 - ("Namespaces are one honking great idea -- let's do more of those!", '__Tim Peters, The Zen of Python'),
2.25 - ]
2.26 -
2.27 + ("Beautiful is better than ugly.", '__Tim Peters, The Zen of Python'),
2.28 + ("Explicit is better than implicit.", '__Tim Peters, The Zen of Python'),
2.29 + ("Simple is better than complex.", '__Tim Peters, The Zen of Python'),
2.30 + ("Complex is better than complicated.", '__Tim Peters, The Zen of Python'),
2.31 + ("Flat is better than nested.", '__Tim Peters, The Zen of Python'),
2.32 + ("Sparse is better than dense.", '__Tim Peters, The Zen of Python'),
2.33 + ("Readability counts.", '__Tim Peters, The Zen of Python'),
2.34 + ("Special cases aren't special enough to break the rules.", '__Tim Peters, The Zen of Python'),
2.35 + ("Although practicality beats purity.", '__Tim Peters, The Zen of Python'),
2.36 + ("Errors should never pass silently.", '__Tim Peters, The Zen of Python'),
2.37 + ("Unless explicitly silenced.", '__Tim Peters, The Zen of Python'),
2.38 + ("In the face of ambiguity, refuse the temptation to guess.", '__Tim Peters, The Zen of Python'),
2.39 + ("Although that way may not be obvious at first unless you're Dutch.", '__Tim Peters, The Zen of Python'),
2.40 + ("Now is better than never.", '__Tim Peters, The Zen of Python'),
2.41 + ("Although never is often better than *right* now.", '__Tim Peters, The Zen of Python'),
2.42 + ("If the implementation is hard to explain, it's a bad idea.", '__Tim Peters, The Zen of Python'),
2.43 + ("If the implementation is easy to explain, it may be a good idea.", '__Tim Peters, The Zen of Python'),
2.44 + ("Namespaces are one honking great idea -- let's do more of those!", '__Tim Peters, The Zen of Python'),
2.45 + ]
2.46 +
2.47 shuffle(sayings)
2.48 -
2.49 +
2.50 saying, author = sayings[0]
2.51 return saying, author