From 4dee0cdd6bae01a136d9a88aa71d8c238fd89ac6 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 27 Mar 2011 13:49:17 -0600 Subject: [PATCH] ... --- src/calibre/manual/plugin_examples/interface_demo/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/calibre/manual/plugin_examples/interface_demo/config.py b/src/calibre/manual/plugin_examples/interface_demo/config.py index e718106d3e..fd391ce944 100644 --- a/src/calibre/manual/plugin_examples/interface_demo/config.py +++ b/src/calibre/manual/plugin_examples/interface_demo/config.py @@ -12,8 +12,8 @@ from PyQt4.Qt import QWidget, QHBoxLayout, QLabel, QLineEdit from calibre.utils.config import JSONConfig # This is where all preferences for this plugin will be stored -# Remember that this name is also in a global namespace, so make it as unique -# as possible. +# Remember that this name (i.e. plugins/interface_demo) is also +# in a global namespace, so make it as unique as possible. # You should always prefix your config file name with plugins/, # so as to ensure you dont accidentally clobber a calibre config file prefs = JSONConfig('plugins/interface_demo')