diff --git a/thefuck/output/__init__.py b/thefuck/output_readers/__init__.py similarity index 100% rename from thefuck/output/__init__.py rename to thefuck/output_readers/__init__.py diff --git a/thefuck/output/read_log.py b/thefuck/output_readers/read_log.py similarity index 100% rename from thefuck/output/read_log.py rename to thefuck/output_readers/read_log.py diff --git a/thefuck/output/rerun.py b/thefuck/output_readers/rerun.py similarity index 100% rename from thefuck/output/rerun.py rename to thefuck/output_readers/rerun.py diff --git a/thefuck/types.py b/thefuck/types.py index b5e8483..5fa7b3d 100644 --- a/thefuck/types.py +++ b/thefuck/types.py @@ -7,7 +7,7 @@ from .conf import settings from .const import DEFAULT_PRIORITY, ALL_ENABLED from .exceptions import EmptyCommand from .utils import get_alias, format_raw_script -from .output import get_output +from .output_readers import get_output class Command(object):