Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove six usage #159

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 10 additions & 11 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
# serve to show the default.

import re
import six
import sys, os, os.path

# If extensions (or modules to document with autodoc) are in another directory,
Expand Down Expand Up @@ -43,8 +42,8 @@
out = os.path.join(static_root, '%s.html' % script)
if os.path.exists(out):
os.unlink(out)
with open(out, 'wb+') as f:
f.write(six.u(html))
with open(out, 'w') as f:
f.write(html)

# -- General configuration -----------------------------------------------------

Expand All @@ -68,8 +67,8 @@
master_doc = 'index'

# General information about the project.
project = u'django-session-security'
copyright = u'2012-2015, James Pic and contributors'
project = 'django-session-security'
copyright = '2012-2015, James Pic and contributors'

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
Expand Down Expand Up @@ -211,8 +210,8 @@
# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title, author, documentclass [howto/manual]).
latex_documents = [
('index', 'django-session-security.tex', u'django-session-security Documentation',
u'James Pic', 'manual'),
('index', 'django-session-security.tex', 'django-session-security Documentation',
'James Pic', 'manual'),
]

# The name of an image file (relative to this directory) to place at the top of
Expand Down Expand Up @@ -241,8 +240,8 @@
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
('index', 'django-session-security', u'django-session-security Documentation',
[u'James Pic'], 1)
('index', 'django-session-security', 'django-session-security Documentation',
['James Pic'], 1)
]

# If true, show URL addresses after external links.
Expand All @@ -255,8 +254,8 @@
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
('index', 'django-session-security', u'django-session-security Documentation',
u'James Pic', 'django-session-security', 'One line description of project.',
('index', 'django-session-security', 'django-session-security Documentation',
'James Pic', 'django-session-security', 'One line description of project.',
'Miscellaneous'),
]

Expand Down
3 changes: 0 additions & 3 deletions session_security/tests/test_views.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
from __future__ import unicode_literals


import time
from datetime import datetime, timedelta
import unittest
Expand Down