Python 3.2 compatibility
diff --git a/docs/conf.py b/docs/conf.py
index 03a6f78..bd8642c 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -42,8 +42,8 @@
 master_doc = 'index'
 
 # General information about the project.
-project = u'Cryptography'
-copyright = u'2013, Individual Contributors'
+project = 'Cryptography'
+copyright = '2013, Individual 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
@@ -185,8 +185,8 @@
 # Grouping the document tree into LaTeX files. List of tuples
 # (source start file, target name, title, author, documentclass [howto/manual])
 latex_documents = [
-    ('index', 'Cryptography.tex', u'Cryptography Documentation',
-        u'Individual Contributors', 'manual'),
+    ('index', 'Cryptography.tex', 'Cryptography Documentation',
+        'Individual Contributors', 'manual'),
 ]
 
 # The name of an image file (relative to this directory) to place at the top of
@@ -215,8 +215,8 @@
 # One entry per manual page. List of tuples
 # (source start file, name, description, authors, manual section).
 man_pages = [
-    ('index', 'cryptography', u'Cryptography Documentation',
-        [u'Individual Contributors'], 1)
+    ('index', 'cryptography', 'Cryptography Documentation',
+        ['Individual Contributors'], 1)
 ]
 
 # If true, show URL addresses after external links.
@@ -229,8 +229,8 @@
 # (source start file, target name, title, author,
 #  dir menu entry, description, category)
 texinfo_documents = [
-    ('index', 'Cryptography', u'Cryptography Documentation',
-        u'Individual Contributors', 'Cryptography',
+    ('index', 'Cryptography', 'Cryptography Documentation',
+        'Individual Contributors', 'Cryptography',
         'One line description of project.',
         'Miscellaneous'),
 ]