Skip to content

Commit 33534bb

Browse files
committed
Happy New Year 2015
1 parent 4fde65e commit 33534bb

48 files changed

Lines changed: 48 additions & 48 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2014 by Armin Ronacher and contributors. See AUTHORS
1+
Copyright (c) 2015 by Armin Ronacher and contributors. See AUTHORS
22
for more details.
33

44
Some rights reserved.

docs/conf.py

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

4444
# General information about the project.
4545
project = u'Flask'
46-
copyright = u'2014, Armin Ronacher'
46+
copyright = u'2015, Armin Ronacher'
4747

4848
# The version info for the project you're documenting, acts as replacement for
4949
# |version| and |release|, also used in various other places throughout the

examples/flaskr/flaskr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
A microblog example application written as Flask tutorial with
77
Flask and sqlite3.
88
9-
:copyright: (c) 2014 by Armin Ronacher.
9+
:copyright: (c) 2015 by Armin Ronacher.
1010
:license: BSD, see LICENSE for more details.
1111
"""
1212

examples/flaskr/test_flaskr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Tests the Flaskr application.
77
8-
:copyright: (c) 2014 by Armin Ronacher.
8+
:copyright: (c) 2015 by Armin Ronacher.
99
:license: BSD, see LICENSE for more details.
1010
"""
1111

examples/jqueryexample/jqueryexample.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
A simple application that shows how Flask and jQuery get along.
77
8-
:copyright: (c) 2014 by Armin Ronacher.
8+
:copyright: (c) 2015 by Armin Ronacher.
99
:license: BSD, see LICENSE for more details.
1010
"""
1111
from flask import Flask, jsonify, render_template, request

examples/minitwit/minitwit.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
A microblogging application written with Flask and sqlite3.
77
8-
:copyright: (c) 2014 by Armin Ronacher.
8+
:copyright: (c) 2015 by Armin Ronacher.
99
:license: BSD, see LICENSE for more details.
1010
"""
1111

examples/minitwit/test_minitwit.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Tests the MiniTwit application.
77
8-
:copyright: (c) 2014 by Armin Ronacher.
8+
:copyright: (c) 2015 by Armin Ronacher.
99
:license: BSD, see LICENSE for more details.
1010
"""
1111
import os

flask/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
A microframework based on Werkzeug. It's extensively documented
77
and follows best practice patterns.
88
9-
:copyright: (c) 2014 by Armin Ronacher.
9+
:copyright: (c) 2015 by Armin Ronacher.
1010
:license: BSD, see LICENSE for more details.
1111
"""
1212

flask/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Alias for flask.run for the command line.
77
8-
:copyright: (c) 2014 by Armin Ronacher.
8+
:copyright: (c) 2015 by Armin Ronacher.
99
:license: BSD, see LICENSE for more details.
1010
"""
1111

flask/_compat.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
version of six so we don't have to depend on a specific version
88
of it.
99
10-
:copyright: (c) 2014 by Armin Ronacher.
10+
:copyright: (c) 2015 by Armin Ronacher.
1111
:license: BSD, see LICENSE for more details.
1212
"""
1313
import sys

0 commit comments

Comments
 (0)