aboutsummaryrefslogtreecommitdiff
path: root/whatmaps/debiandistro.py
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2014-07-11 19:55:00 +0200
committerGuido Günther <agx@sigxcpu.org>2014-07-11 20:02:35 +0200
commit836bffc3f25d5752f8c72ba2c547318aea62faae (patch)
treeb24f58d4643240e1e8623cfe5ddf405efd6f70a1 /whatmaps/debiandistro.py
parentf758314abe0c3c4cc2b06ca5a24c7288a0af41ed (diff)
Make imports python2 and python3 compatible
Do this again and I'll rewrite you in ruby.
Diffstat (limited to 'whatmaps/debiandistro.py')
-rw-r--r--whatmaps/debiandistro.py4
1 files changed, 2 insertions, 2 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'