aboutsummaryrefslogtreecommitdiffstats
path: root/mediagoblin/plugins/subtitles/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'mediagoblin/plugins/subtitles/models.py')
-rw-r--r--mediagoblin/plugins/subtitles/models.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/mediagoblin/plugins/subtitles/models.py b/mediagoblin/plugins/subtitles/models.py
index f71fb173..eb78147c 100644
--- a/mediagoblin/plugins/subtitles/models.py
+++ b/mediagoblin/plugins/subtitles/models.py
@@ -13,11 +13,12 @@
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
+
from sqlalchemy import Column, Integer, Unicode, ForeignKey
from sqlalchemy.orm import relationship
-from mediagoblin.db.models import User
-from mediagoblin.db.base import Base,MediaEntry
+from mediagoblin.db.base import Base, MediaEntry
+
class MediaSubtitleFile(Base):
__tablename__ = "core__subtitle_files"