aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--whatmaps/debiandistro.py4
-rw-r--r--whatmaps/distro.py16
2 files changed, 10 insertions, 10 deletions
diff --git a/whatmaps/debiandistro.py b/whatmaps/debiandistro.py
index 5333a35..9294c9f 100644
--- a/whatmaps/debiandistro.py
+++ b/whatmaps/debiandistro.py
@@ -31,12 +31,12 @@ import subprocess
import sys
import string
-import distro
+import whatmaps.distro
from . debianpkg import DebianPkg
from . pkg import PkgError
from . systemd import Systemd
-class DebianDistro(distro.Distro):
+class DebianDistro(whatmaps.distro.Distro):
"Debian (dpkg) based distribution"
id = 'Debian'
diff --git a/whatmaps/distro.py b/whatmaps/distro.py
index a575a70..f0f08eb 100644
--- a/whatmaps/distro.py
+++ b/whatmaps/distro.py
@@ -95,8 +95,8 @@ class Distro(object):
def detect():
return detect()
-import debiandistro
-import redhatdistro
+import whatmaps.debiandistro
+import whatmaps.redhatdistro
def detect():
"""
@@ -119,16 +119,16 @@ def detect():
# id is None in this case
pass
- if id == debiandistro.DebianDistro.id:
- return debiandistro.DebianDistro
- elif id == redhatdistro.FedoraDistro.id:
- return redhatdistro.FedoraDistro
+ if id == whatmaps.debiandistro.DebianDistro.id:
+ return whatmaps.debiandistro.DebianDistro
+ elif id == whatmaps.redhatdistro.FedoraDistro.id:
+ return whatmaps.redhatdistro.FedoraDistro
else:
if os.path.exists('/usr/bin/dpkg'):
logging.warning("Unknown distro but dpkg found, assuming Debian")
- return debiandistro.DebianDistro
+ return whatmaps.debiandistro.DebianDistro
elif os.path.exists('/bin/rpm'):
logging.warning("Unknown distro but rpm found, assuming Fedora")
- return debiandistro.FedoraDistro
+ return whatmaps.debiandistro.FedoraDistro
else:
return None