diff --git a/utils.py b/utils.py index 6f80d050ed81a1635a3f28db4e92f2d32d294573..8e3b8ad6193643400e8106fcfce5df2dda14d7ed 100644 --- a/utils.py +++ b/utils.py @@ -9,9 +9,9 @@ try: except ImportError: sd_card_present = lambda: False try: - import ph + import _ph except ImportError: - ph = None + _ph = None VERSION = "0.0" @@ -125,5 +125,5 @@ def volume(app, vol): app.blm.volume = vol def emit(*args, **kwargs): - if ph and ph.emit: - ph.emit(*args, **kwargs) + if _ph and _ph.emit: + _ph.emit(*args, **kwargs)