diff options
author | hut <hut@lavabit.com> | 2013-03-01 13:19:49 +0100 |
---|---|---|
committer | hut <hut@lavabit.com> | 2013-03-01 13:24:25 +0100 |
commit | eb7b0a7bc3ebea16216d86b2caa175ae6c56f3bf (patch) | |
tree | 4ac89d19e6c8350e4ebec0f53e5331006770e589 /doc | |
parent | d7b2660eb16847f0fce5beef94ac496d57fb27d3 (diff) | |
download | ranger-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/HACKING | 2 |
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, |