Skip to content

Commit de1a33b

Browse files
committed
fixing templates
1 parent 4f96047 commit de1a33b

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

CHANGES.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ Changes
22
=======
33
25-Oct-2010: fixing bug find-link option now into the correct place to install
44
25-Oct-2010: adding base templates base.html, 404.html, 500.html
5+
25-Oct-2010: fixing tempaltes

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from setuptools import setup, find_packages
44

5-
version = '0.1.2'
5+
version = '0.1.3'
66

77
def read_file(name):
88
return open(os.path.join(os.path.dirname(__file__),

src/gaebuild/templates.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ def main():
244244
}
245245
}
246246

247-
base_html = ''' {% load i18n %}
247+
base_html = '''{% load i18n %}
248248
<!DOCTYPE html>
249249
<html>
250250
<head>
@@ -267,4 +267,4 @@ def main():
267267
{% load i18n %}
268268
{% block container %}
269269
{% trans 'Server error' %}
270-
{% endblock %}'''
270+
{% endblock %}'''

0 commit comments

Comments
 (0)