From f791a072084ef6e6d9dbbab8b51e1ce5733d3334 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 22 Jul 2008 21:49:23 -0700 Subject: [PATCH] IGN:... --- .../pictureflow/PyQt/pictureflowconfig.py.in | 22 ------------------- 1 file changed, 22 deletions(-) delete mode 100644 src/calibre/gui2/pictureflow/PyQt/pictureflowconfig.py.in diff --git a/src/calibre/gui2/pictureflow/PyQt/pictureflowconfig.py.in b/src/calibre/gui2/pictureflow/PyQt/pictureflowconfig.py.in deleted file mode 100644 index 40ed93238e..0000000000 --- a/src/calibre/gui2/pictureflow/PyQt/pictureflowconfig.py.in +++ /dev/null @@ -1,22 +0,0 @@ -from PyQt4 import pyqtconfig - -class Configuration(pyqtconfig.Configuration): - - def __init__(self, sub_cfg=None): - """Initialise an instance of the class. - - sub_cfg is the list of sub-class configurations. It should be None - when called normally. - """ - # This is all standard code to be copied verbatim except for the - # name of the module containing the super-class. - if sub_cfg: - cfg = sub_cfg - else: - cfg = [] - - cfg.append(_pkg_config) - - pyqtconfig.Configuration.__init__(self, cfg) - -