We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 511620a commit 98d8dddCopy full SHA for 98d8ddd
src/Discover.py
@@ -3,7 +3,11 @@
3
4
from __future__ import print_function
5
6
-from . import Helper
+try:
7
+ from . import Helper
8
+except:
9
+ import Helper
10
+
11
import re
12
import sys
13
src/Helper.py
@@ -1,5 +1,5 @@
1
# -*- coding: utf-8 -*-
2
-# Helper functions to capsule Python2/Python3 differences
+# Depends: smartctl
import json
import subprocess
src/SmartInfo.py
@@ -3,7 +3,10 @@
import os
import stat
0 commit comments