That is an implicit relative import, it would have worked in Python 2 but it's no longer allowed in Python 3. From PEP 8:
Implicit relative imports should never be used and have been removed in Python 3.
In util_one.py module, change it to:
from folder_beta import util_two Explicit relative imports are also possible here, the equivalent would be:
from . import util_two