typo-bugfix

This commit is contained in:
lars 2006-11-30 20:55:31 +00:00
parent f5be96ec9c
commit 7fabf7a264
2 changed files with 12 additions and 3 deletions

10
debian/changelog vendored
View File

@ -1,3 +1,9 @@
cryptobox (0.3.0-1) unstable; urgency=low
cryptobox (0.2.99-2) unstable; urgency=low
* fixed a typo
-- Lars Kruse <devel@sumpfralle.de> Thu, 30 Nov 2006 21:51:24 +0100
cryptobox (0.2.99-1) unstable; urgency=low
* Initial release
-- Lars Kruse <devel@sumpfralle.de> Wed, 10 May 2006 20:26:47 +0100
-- Lars Kruse <devel@sumpfralle.de> Wed, 30 November 2006 20:26:47 +0100

View File

@ -148,7 +148,10 @@ class WebInterfaceDataset(dict):
self["Settings.DocDir"] = os.path.abspath(self.prefs["Locations"]["DocDir"])
self["Settings.Stylesheet"] = self.prefs["WebSettings"]["Stylesheet"]
self["Settings.Language"] = self.prefs["WebSettings"]["Languages"][0]
self["Settings.PluginDir"] = self.prefs["Locations"]["PluginDir"]
for num,d in enumerate(self.prefs["Locations"]["PluginDir"]):
self["Settings.PluginDir.%d" % num] = d
## store the first directory in this settings variable - backward compatibility
self["Settings.PluginDir"] = self.prefs["Locations"]["PluginDir"][0]
self["Settings.SettingsDir"] = self.prefs["Locations"]["SettingsDir"]