Skip to content

Commit

Permalink
Fixed broken import
Browse files Browse the repository at this point in the history
  • Loading branch information
Phil Tysoe committed Feb 10, 2012
1 parent 6fd9b6b commit bf83aaa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions django_openkm/facades.py
Expand Up @@ -2,8 +2,8 @@

from django.conf import settings

import client
from .utils import make_file_java_byte_array_compatible
import client, utils


class Session(object):

Expand Down Expand Up @@ -216,7 +216,7 @@ def create_path_from_filename(self, file_obj):
return "%s%s" % (settings.OPENKM['configuration']['UploadRoot'], filename)

def convert_file_content_to_binary_for_transport(self, file_obj):
return make_file_java_byte_array_compatible(file_obj)
return utils.make_file_java_byte_array_compatible(file_obj)

def create_document_on_openkm(self, document, content):
return self.document.create(document, content)
Expand Down

0 comments on commit bf83aaa

Please sign in to comment.