Skip to content

Commit

Permalink
Merge c290d66 into d51e7d1
Browse files Browse the repository at this point in the history
  • Loading branch information
ralic committed May 21, 2017
2 parents d51e7d1 + c290d66 commit 5cd05ab
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion comments/migrations/0001_initial.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals


from django.db import models, migrations
from django.conf import settings
Expand Down
2 changes: 1 addition & 1 deletion comments/templatetags/comments_tags.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def get_comments(object, user):
except:
liked.append(False)
return {"form": CommentForm(),
"comment_liked": zip(comments, liked),
"comment_liked": list(zip(comments, liked)),
"target": object,
"user": user,
"comments_count": comments.count(),
Expand Down
14 changes: 7 additions & 7 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@
master_doc = 'index'

# General information about the project.
project = u'django-ajax-comments'
copyright = u'2015, DREIDEV'
author = u'DREIDEV'
project = 'django-ajax-comments'
copyright = '2015, DREIDEV'
author = 'DREIDEV'

# 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 @@ -224,8 +224,8 @@
# (source start file, target name, title,
# author, documentclass [howto, manual, or own class]).
latex_documents = [
(master_doc, 'django-ajax-comments.tex', u'django-ajax-comments Documentation',
u'DREIDEV', 'manual'),
(master_doc, 'django-ajax-comments.tex', 'django-ajax-comments Documentation',
'DREIDEV', 'manual'),
]

# The name of an image file (relative to this directory) to place at the top of
Expand Down Expand Up @@ -254,7 +254,7 @@
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
(master_doc, 'django-ajax-comments', u'django-ajax-comments Documentation',
(master_doc, 'django-ajax-comments', 'django-ajax-comments Documentation',
[author], 1)
]

Expand All @@ -268,7 +268,7 @@
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
(master_doc, 'django-ajax-comments', u'django-ajax-comments Documentation',
(master_doc, 'django-ajax-comments', 'django-ajax-comments Documentation',
author, 'django-ajax-comments', 'One line description of project.',
'Miscellaneous'),
]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
setup(
name='django-ajax-comments',
version='1.1.0.dev1',
author=u'DREIDEV',
author='DREIDEV',
author_email='info@dreidev.com',
url='https://github.com/dreidev/Comments',
license='MIT',
Expand Down

0 comments on commit 5cd05ab

Please sign in to comment.