From 9a537e76e2780450f67ee22b32e0b67343fa1b1d Mon Sep 17 00:00:00 2001 From: Aaron Griffith Date: Sat, 30 Apr 2011 23:06:44 -0400 Subject: [PATCH] some config file clarifications --- quadtree.py | 2 +- sample.settings.py | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/quadtree.py b/quadtree.py index 701aa27..6d5a567 100644 --- a/quadtree.py +++ b/quadtree.py @@ -91,7 +91,7 @@ class QuadtreeGen(object): yradius >= worldobj.maxrow and -yradius <= worldobj.minrow: break else: - raise ValueError("Your map is waaaay too big! Use the '-z' or '--zoom' options.") + raise ValueError("Your map is waaaay too big! Use the 'zoom' option in 'settings.py'.") self.p = p else: diff --git a/sample.settings.py b/sample.settings.py index ee0d050..2872506 100644 --- a/sample.settings.py +++ b/sample.settings.py @@ -2,8 +2,9 @@ # Please see the README or https://github.com/brownan/Minecraft-Overviewer/wiki/DTT-Upgrade-Guide # for more details. -# To use this file, simply copy it to settings.py and make any necessary changes -# to suite your needs. +# This file is not meant to be used directly, but instead it is supposed to +# provide examples of interesting things you can do with the settings file. Most +# of the time, a simple 'setting_name = value' will work. # This file is a python script, so you can import and python module you wish or # use any built-in python function, though this is not normally necessary