about summary refs log tree commit diff stats
path: root/ranger
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2010-03-12 01:17:56 +0100
committerhut <hut@lavabit.com>2010-03-12 01:17:56 +0100
commit02cf8f611f9b7d836b141bb1b54f7116fa331e68 (patch)
tree2e2007c73c0171e343ceaa6d422d6d9462214752 /ranger
parent936211c8913fe2ed9df9e97342e8ddf3b939c6bb (diff)
downloadranger-02cf8f611f9b7d836b141bb1b54f7116fa331e68.tar.gz
moved ranger.actions and ranger.commands
Diffstat (limited to 'ranger')
-rw-r--r--ranger/core/actions.py (renamed from ranger/actions.py)0
-rw-r--r--ranger/core/fm.py2
-rw-r--r--ranger/defaults/commands.py (renamed from ranger/commands.py)0
-rw-r--r--ranger/gui/widgets/console.py2
-rw-r--r--ranger/help/console.py2
5 files changed, 3 insertions, 3 deletions
diff --git a/ranger/actions.py b/ranger/core/actions.py
index 849a2a52..849a2a52 100644
--- a/ranger/actions.py
+++ b/ranger/core/actions.py
diff --git a/ranger/core/fm.py b/ranger/core/fm.py
index 83426a04..74d2bb8a 100644
--- a/ranger/core/fm.py
+++ b/ranger/core/fm.py
@@ -17,7 +17,7 @@ from time import time
 from collections import deque
 
 import ranger
-from ranger.actions import Actions
+from ranger.core.actions import Actions
 from ranger.container import Bookmarks
 from ranger.core.runner import Runner
 from ranger import relpath_conf
diff --git a/ranger/commands.py b/ranger/defaults/commands.py
index 834e358b..834e358b 100644
--- a/ranger/commands.py
+++ b/ranger/defaults/commands.py
diff --git a/ranger/gui/widgets/console.py b/ranger/gui/widgets/console.py
index a331c66d..2ffd1a62 100644
--- a/ranger/gui/widgets/console.py
+++ b/ranger/gui/widgets/console.py
@@ -23,7 +23,7 @@ import curses
 from collections import deque
 
 from . import Widget
-from ranger import commands
+from ranger.defaults import commands
 from ranger.gui.widgets.console_mode import is_valid_mode, mode_to_class
 from ranger import log
 from ranger.ext.shell_escape import shell_quote
diff --git a/ranger/help/console.py b/ranger/help/console.py
index 7ba15799..3a4428f3 100644
--- a/ranger/help/console.py
+++ b/ranger/help/console.py
@@ -127,7 +127,7 @@ one unambiguous match, <RETURN> will be pressed for you, giving you a
 very fast way to browse your files.
 
 
-All commands are defined in ranger/commands.py.  You can refer to this
+All commands are defined in ranger/defaults/commands.py.  You can refer to this
 file for a list of commands.  Implementing new commands should be intuitive:
 Create a new class, a subclass of Command, and define the execute method
 is usually enough.  For parsing command input, the command parser in