diff options
| author | Vik <vmuriart@users.noreply.github.com> | 2016-06-11 05:29:39 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-06-11 05:29:39 -0700 |
| commit | 751933d3abdce2234bd869ee65a1ebc7ccbf6b53 (patch) | |
| tree | 77fd5be087ae64c4416c0bd775f6c1843b45a007 /docs/source/conf.py | |
| parent | 00304afc15a554f2ac8decca1d916ba66c143b45 (diff) | |
| parent | 1fd3da42bd55bfc1e916e3c3f301f0364b0ded21 (diff) | |
| download | sqlparse-751933d3abdce2234bd869ee65a1ebc7ccbf6b53.tar.gz | |
Merge pull request #254 from vmuriart/tests_str-format
Add various tests and change to new style str-format
Diffstat (limited to 'docs/source/conf.py')
| -rw-r--r-- | docs/source/conf.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/source/conf.py b/docs/source/conf.py index 5f7d34f..70bd69a 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -42,8 +42,8 @@ source_suffix = '.rst' master_doc = 'index' # General information about the project. -project = u'python-sqlparse' -copyright = u'%s, Andi Albrecht' % datetime.date.today().strftime('%Y') +project = 'python-sqlparse' +copyright = '{:%Y}, Andi Albrecht'.format(datetime.date.today()) # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the @@ -177,8 +177,8 @@ htmlhelp_basename = 'python-sqlparsedoc' # Grouping the document tree into LaTeX files. List of tuples # (source start file, target name, title, author, documentclass [howto/manual]). latex_documents = [ - ('index', 'python-sqlparse.tex', ur'python-sqlparse Documentation', - ur'Andi Albrecht', 'manual'), + ('index', 'python-sqlparse.tex', 'python-sqlparse Documentation', + 'Andi Albrecht', 'manual'), ] # The name of an image file (relative to this directory) to place at the top of |
