Initial attempt at python3 conversion
[time-slider.git] / usr / share / time-slider / lib / time_slider / smf.py
index 5c64109..1185cf2 100644 (file)
@@ -22,7 +22,7 @@
 
 import subprocess
 import threading
-import util
+from . import util
 
 #SMF EXIT CODES
 SMF_EXIT_OK          = 0
@@ -149,5 +149,5 @@ class SMFInstance(Exception):
 
 if __name__ == "__main__":
   S = SMFInstance('svc:/application/time-slider')
-  print S
+  print(S)