diff options
| author | Victor Uriarte <victor.m.uriarte@intel.com> | 2016-06-10 20:16:53 -0700 |
|---|---|---|
| committer | Victor Uriarte <victor.m.uriarte@intel.com> | 2016-06-11 04:34:12 -0700 |
| commit | ff0ee839987c43c420f1a5d167e3c3c0e873411c (patch) | |
| tree | f4be82d608dc19f86426031b80951491c2a8862d /docs/source | |
| parent | deb38ec69a428452c3b519d4ab02956af8eebd0d (diff) | |
| download | sqlparse-ff0ee839987c43c420f1a5d167e3c3c0e873411c.tar.gz | |
Apply new-style str format
Diffstat (limited to 'docs/source')
| -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 |
