summary refs log tree commit diff stats
path: root/doc
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2013-03-01 13:19:49 +0100
committerhut <hut@lavabit.com>2013-03-01 13:24:25 +0100
commiteb7b0a7bc3ebea16216d86b2caa175ae6c56f3bf (patch)
tree4ac89d19e6c8350e4ebec0f53e5331006770e589 /doc
parentd7b2660eb16847f0fce5beef94ac496d57fb27d3 (diff)
downloadranger-eb7b0a7bc3ebea16216d86b2caa175ae6c56f3bf.tar.gz
renamed container.settingobject to container.settings
ranger.container.settingobject.SettingObject ->
ranger.container.settings.Settings

ranger.container.settingobject.LocalSettingObject ->
ranger.container.settings.LocalSettings

This is for more conformity.  No other class is called *Object.
Diffstat (limited to 'doc')
-rw-r--r--doc/HACKING2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/HACKING b/doc/HACKING
index 36320b71..be92431e 100644
--- a/doc/HACKING
+++ b/doc/HACKING
@@ -47,7 +47,7 @@ the constant PREVIEW_BLACKLIST
 * Adding options:
 In ranger/config/options.py
 add the default value, like: my_option = True
-In ranger/container/settingobject.py
+In ranger/container/settings.py
 add the name of your option to the constant ALLOWED_SETTINGS
 
 The setting is now accessible at self.settings.my_option,
134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194