The unified diff between revisions [0eaf66b5..] and [0e5cf8ce..] is displayed below. It can also be downloaded as a raw diff.
This diff has been restricted to the following files: 'config.py'
# # # patch "config.py" # from [1028ab910fddc15e627d9e16fcd47d75bd0954ec] # to [695a5fb88edd1190cefe0d3958e8358d46e1376b] # ============================================================ --- config.py 1028ab910fddc15e627d9e16fcd47d75bd0954ec +++ config.py 695a5fb88edd1190cefe0d3958e8358d46e1376b @@ -1,12 +1,18 @@ +import datetime import os install_path = '/Users/grahame/monotone/memes/' storage_path = os.path.join(install_path, 'storage') -word_shelf = os.path.join(install_path, 'word.shelf') word_db = os.path.join(install_path, 'word.db') user_schema = os.path.join(install_path, 'sql', 'user.sql') haiku_line_attempts = 3 +haiku_attempts = 10 + +update_interval = datetime.timedelta(days=7) + +dynamic_uri_path = 'http://localhost:8080/' +static_uri_path = 'http://glamdring.local/~grahame/memes/static/' + -haiku_attempts = 3