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

Update utils.py #149

Open
wants to merge 3 commits 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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
Graphos
----------------
This is a fork of the original library which appears to lack a maintainer. I simply changed one of the imports to reflect the updated version of Django, and it worked to build my project. I hope this is of some use to others.

[![Build Status](https://travis-ci.org/agiliq/django-graphos.png)](https://travis-ci.org/agiliq/django-graphos)

Expand Down
4 changes: 2 additions & 2 deletions graphos/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
import uuid
import random
import string

from django.utils import six, timezone
import six
from django.utils import timezone
from django.utils.encoding import force_text
from django.utils.functional import Promise
from django.db.models.query import QuerySet
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
Django
six==1.14.0 # MIT License (MIT)