Update license.

This commit is contained in:
Christopher 2015-12-21 11:51:22 -06:00
parent 3a2b4b9c3b
commit 6035736c32
2 changed files with 17 additions and 5 deletions

View file

@ -1,4 +1,9 @@
# * Copyright (c) 2012 Christopher Ramírez chris.ramirezg [at} gmail (dot] com. # * Copyright (c) 2012 - 2015
# * Christopher Ramírez chris.ramirezg [at} gmail (dot] com.
# * Andrés Reyes Monge (github.com/armonge)
# * Anton Kochnev (github.com/ak04nv)
# * DieterBuys (github.com/DieterBuys)
#
# * All rights reserved. # * All rights reserved.
# * # *
# * Permission is hereby granted, free of charge, to any person obtaining a # * Permission is hereby granted, free of charge, to any person obtaining a

View file

@ -1,8 +1,6 @@
#!/usr/bin/python #! /usr/bin/python
# -*- coding: utf-8 -*-
# * Copyright (c) 2012-2014 Christopher Ramirez chris.ramirezg@gmail.com
# *
# * Licensed under the MIT license.
""" """
Secretary Secretary
@ -13,6 +11,15 @@ Secretary
To render a template: To render a template:
engine = Renderer(template_file) engine = Renderer(template_file)
result = engine.render(template_var1=...) result = engine.render(template_var1=...)
Copyright (c) 2012-2015 By:
* Christopher Ramirez <chris.ramirezg@gmail.com>
* Andrés Reyes Monge (github.com/armonge)
* Anton Kochnev (github.com/ak04nv)
* DieterBuys (github.com/DieterBuys)
* Licensed under the MIT license.
""" """
from __future__ import unicode_literals, print_function from __future__ import unicode_literals, print_function