summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2011-10-07 18:16:06 +0200
committerhut <hut@lavabit.com>2011-10-07 18:16:06 +0200
commitb8d13fb4df1fbed95ba928495c7dc56eaa008505 (patch)
tree5d0a84f396b1d7f9f186e708c878f505fd2ffedd
parent58ef5c2164a08d7d64aee348bcf71c989f9f69c3 (diff)
downloadranger-b8d13fb4df1fbed95ba928495c7dc56eaa008505.tar.gz
moved DELETE_WARNING constant from api to api.commands
-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):