Skip to content

Commit

Permalink
Avoid Python 2 ur'string' syntax
Browse files Browse the repository at this point in the history
Continue to use u'unicode' strings as elsewhere in conf.py, but these
literals use no backslash escapes anyway so there's no need for r'raw'.
Fixes #1019.
  • Loading branch information
jmarshall committed Jun 2, 2021
1 parent 34fbe32 commit e340c85
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,8 +201,8 @@
# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title, author, documentclass [howto/manual]).
latex_documents = [
('index', 'pysam.tex', ur'pysam documentation',
ur'Andreas Heger, Kevin Jacobs et al.', 'manual'),
('index', 'pysam.tex', u'pysam documentation',
u'Andreas Heger, Kevin Jacobs, et al.', 'manual'),
]

# The name of an image file (relative to this directory) to place at the top of
Expand Down

0 comments on commit e340c85

Please sign in to comment.