summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonas Haag <jonas@lophus.org>2010-08-11 08:25:48 +0800
committerMarcel Hellkamp <marc@gsites.de>2010-08-11 18:08:18 +0800
commit67796c60fe533994a3fcd41a24b9d5bb7bd666d1 (patch)
tree049198664c07e682e023c26a812a0f7c5ee75be8
parentb73f62b118275d45a98870ce2426c32735c83ffd (diff)
downloadbottle-67796c60fe533994a3fcd41a24b9d5bb7bd666d1.tar.gz
Normalize 'built-in'
-rwxr-xr-xbottle.py2
-rwxr-xr-xsetup.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/bottle.py b/bottle.py
index 6deac8a..0707132 100755
--- a/bottle.py
+++ b/bottle.py
@@ -208,7 +208,7 @@ class RouteSyntaxError(RouteError):
class RouteBuildError(RouteError):
- """ The route could not been build """
+ """ The route could not been built """
class Route(object):
diff --git a/setup.py b/setup.py
index d6af56c..a250a01 100755
--- a/setup.py
+++ b/setup.py
@@ -20,7 +20,7 @@ for line in open(os.path.join(os.path.dirname(sys.argv[0]),'bottle.py')):
setup(name='bottle',
version=version,
description='Fast and simple WSGI-framework for small web-applications.',
- long_description='Bottle is a fast and simple micro-framework for small web-applications. It offers request dispatching (Routes) with url parameter support, Templates, a build-in HTTP Server and adapters for many third party WSGI/HTTP-server and template engines. All in a single file and with no dependencies other than the Python Standard Library.',
+ long_description='Bottle is a fast and simple micro-framework for small web-applications. It offers request dispatching (Routes) with url parameter support, Templates, a built-in HTTP Server and adapters for many third party WSGI/HTTP-server and template engines. All in a single file and with no dependencies other than the Python Standard Library.',
author='Marcel Hellkamp',
author_email='marc@gsites.de',
url='http://bottle.paws.de/',