From 1132015e60b124552b424d01ddc7aaf92382c86b Mon Sep 17 00:00:00 2001 From: Vladimir Iakovlev Date: Sat, 26 Aug 2017 12:45:49 +0200 Subject: [PATCH] #682: Rename `output` to `output_readers` --- thefuck/{output => output_readers}/__init__.py | 0 thefuck/{output => output_readers}/read_log.py | 0 thefuck/{output => output_readers}/rerun.py | 0 thefuck/types.py | 2 +- 4 files changed, 1 insertion(+), 1 deletion(-) rename thefuck/{output => output_readers}/__init__.py (100%) rename thefuck/{output => output_readers}/read_log.py (100%) rename thefuck/{output => output_readers}/rerun.py (100%) 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):