# HG changeset patch # User Peter Sanchez # Date 1473521696 25200 # Sat Sep 10 08:34:56 2016 -0700 # Node ID 811edef605c1653acc1fbef57716c4955ad66597 # Parent e56ed8c494dfc5e3c27721d203f530fd6e645785 README typo fix diff --git a/README.rst b/README.rst --- a/README.rst +++ b/README.rst @@ -30,9 +30,9 @@ Alternative Install (Manually): -Place webutils directory in your Python path. Either in your Python +Place easyconfig directory in your Python path. Either in your Python installs site-packages directory or set your $PYTHONPATH environment -variable to include a directory where the webutils directory lives. +variable to include a directory where the easyconfig directory lives. Use diff --git a/easyconfig/__init__.py b/easyconfig/__init__.py --- a/easyconfig/__init__.py +++ b/easyconfig/__init__.py @@ -4,7 +4,7 @@ from django.core.exceptions import ImproperlyConfigured -__version__ = '0.2' +__version__ = '0.3' class EasyConfig(object): def __init__(self, default_module, setting_name): diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from distutils.core import setup -version = '0.2' +version = '0.3' project_name = 'easyconfig' long_description = open('README.rst').read()