Files
thefuck/thefuck/output/__init__.py
T
2017-08-26 06:29:38 +02:00

10 lines
237 B
Python

from ..conf import settings
from . import read_log, rerun
def get_output(script, expanded):
if settings.instant_mode:
return read_log.get_output(script, expanded)
else:
return rerun.get_output(script, expanded)