Skip to content

Commit

Permalink
Set copyright year to current year.
Browse files Browse the repository at this point in the history
  • Loading branch information
remyzandwijk committed Apr 18, 2020
1 parent 4f9ac7e commit 3507d51
Show file tree
Hide file tree
Showing 11 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2017 Grey Li
Copyright (c) 2020 Grey Li

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
# -- Project information -----------------------------------------------------

project = u'Flask-CKEditor'
copyright = u'2018, Grey Li'
copyright = u'2020, Grey Li'
author = u'Grey Li'

# The short X.Y version
Expand Down Expand Up @@ -170,4 +170,4 @@
# -- Options for todo extension ----------------------------------------------

# If true, `todo` and `todoList` produce output, else they produce nothing.
todo_include_todos = True
todo_include_todos = True
2 changes: 1 addition & 1 deletion examples/basic/app.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
"""
:author: Grey Li <withlihui@gmail.com>
:copyright: (c) 2017 by Grey Li.
:copyright: (c) 2020 by Grey Li.
:license: MIT, see LICENSE for more details.
"""
from flask import Flask, render_template
Expand Down
2 changes: 1 addition & 1 deletion examples/codesnippet/app.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
"""
:author: Grey Li <withlihui@gmail.com>
:copyright: (c) 2017 by Grey Li.
:copyright: (c) 2020 by Grey Li.
:license: MIT, see LICENSE for more details.
"""
from flask import Flask, render_template
Expand Down
2 changes: 1 addition & 1 deletion examples/image-upload/app.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
"""
:author: Grey Li <withlihui@gmail.com>
:copyright: (c) 2017 by Grey Li.
:copyright: (c) 2020 by Grey Li.
:license: MIT, see LICENSE for more details.
"""
import os
Expand Down
2 changes: 1 addition & 1 deletion examples/without-flask-wtf/app.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
"""
:author: Grey Li <withlihui@gmail.com>
:copyright: (c) 2017 by Grey Li.
:copyright: (c) 2020 by Grey Li.
:license: MIT, see LICENSE for more details.
"""
from flask import Flask, render_template, request
Expand Down
2 changes: 1 addition & 1 deletion flask_ckeditor/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
~~~~~~~~~~~~~~~
:author: Grey Li <withlihui@gmail.com>
:copyright: (c) 2017 by Grey Li.
:copyright: (c) 2020 by Grey Li.
:license: MIT, see LICENSE for more details.
"""
import warnings
Expand Down
2 changes: 1 addition & 1 deletion flask_ckeditor/fields.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Add support for WTForms/Flask-WTF.
:author: Grey Li <withlihui@gmail.com>
:copyright: (c) 2017 by Grey Li.
:copyright: (c) 2020 by Grey Li.
:license: MIT, see LICENSE for more details.
"""
from wtforms import TextAreaField
Expand Down
2 changes: 1 addition & 1 deletion flask_ckeditor/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
~~~~~~~~~~~~~~~~~~~~
:author: Grey Li <withlihui@gmail.com>
:copyright: (c) 2017 by Grey Li.
:copyright: (c) 2020 by Grey Li.
:license: MIT, see LICENSE for more details.
"""
import os
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
~~~~~~~~~~~~~~~
:author: Grey Li <withlihui@gmail.com>
:copyright: (c) 2017 by Grey Li.
:copyright: (c) 2020 by Grey Li.
:license: MIT, see LICENSE for more details.
"""
from setuptools import setup
Expand Down
2 changes: 1 addition & 1 deletion test_flask_ckeditor.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
~~~~~~~~~~~~~~~~~~~~
:author: Grey Li <withlihui@gmail.com>
:copyright: (c) 2017 by Grey Li.
:copyright: (c) 2020 by Grey Li.
:license: MIT, see LICENSE for more details.
"""
import unittest
Expand Down

0 comments on commit 3507d51

Please sign in to comment.