about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--ranger/api/__init__.py2
-rw-r--r--ranger/api/commands.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/ranger/api/__init__.py b/ranger/api/__init__.py
index 8780fd15..cc64a7c0 100644
--- a/ranger/api/__init__.py
+++ b/ranger/api/__init__.py
@@ -2,5 +2,3 @@
 Files in this module contain helper functions used in
 configuration files.
 """
-
-DELETE_WARNING = 'delete seriously? '
diff --git a/ranger/api/commands.py b/ranger/api/commands.py
index ca8b5fad..9bbc0de0 100644
--- a/ranger/api/commands.py
+++ b/ranger/api/commands.py
@@ -21,6 +21,8 @@ from ranger.core.shared import FileManagerAware
 from ranger.ext.lazy_property import lazy_property
 from ranger.ext.command_parser import LazyParser as parse
 
+DELETE_WARNING = 'delete seriously? '
+
 def alias(*_): pass # COMPAT
 
 class CommandContainer(object):