From 4b3bcdb23d1c4cc78e995aa69cded625b1776b26 Mon Sep 17 00:00:00 2001 From: Kim Thoenen Date: Wed, 5 Feb 2014 18:29:15 +0100 Subject: [PATCH] fixed imports for python3.3 --- djangocms_video/cms_plugins.py | 4 ++-- djangocms_video/forms.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/djangocms_video/cms_plugins.py b/djangocms_video/cms_plugins.py index 3e97ebd..399b923 100644 --- a/djangocms_video/cms_plugins.py +++ b/djangocms_video/cms_plugins.py @@ -4,8 +4,8 @@ from cms.plugin_base import CMSPluginBase from cms.plugin_pool import plugin_pool from . import settings -from forms import VideoForm -from models import Video +from .forms import VideoForm +from .models import Video class VideoPlugin(CMSPluginBase): diff --git a/djangocms_video/forms.py b/djangocms_video/forms.py index f7f8002..f38f499 100644 --- a/djangocms_video/forms.py +++ b/djangocms_video/forms.py @@ -1,5 +1,5 @@ from django import forms -from models import Video +from .models import Video class VideoForm(forms.ModelForm):