summaryrefslogtreecommitdiff
path: root/portato/backend/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'portato/backend/package.py')
-rw-r--r--portato/backend/package.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/portato/backend/package.py b/portato/backend/package.py
index 343dc51..a7f41d7 100644
--- a/portato/backend/package.py
+++ b/portato/backend/package.py
@@ -10,10 +10,11 @@
#
# Written by René 'Necoro' Neumann <necoro@necoro.net>
-from portato.backend import system
-import flags
+from __future__ import absolute_import
-class Package (object):
+from . import _Package, system, flags
+
+class Package (_Package):
"""This is a class abstracting a normal package which can be installed."""
def __init__ (self, cpv):