summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatryk Zawadzki2007-07-30 17:28:52 (GMT)
committercvs2git2012-06-24 12:13:13 (GMT)
commitefec5e0af7fe71c1cf8d016ace77d8ddfac230ae (patch)
treeba1b58d8045248ce6c29cf3e1824dd8ce934aac6
parent1427dcbeaedd5046f624794821effb7465134b7e (diff)
downloadsmart-efec5e0af7fe71c1cf8d016ace77d8ddfac230ae.zip
smart-efec5e0af7fe71c1cf8d016ace77d8ddfac230ae.tar.gz
- find plugins
Changed files: smart-pyc.patch -> 1.1
-rw-r--r--smart-pyc.patch13
1 files changed, 13 insertions, 0 deletions
diff --git a/smart-pyc.patch b/smart-pyc.patch
new file mode 100644
index 0000000..2b1baf9
--- /dev/null
+++ b/smart-pyc.patch
@@ -0,0 +1,13 @@
+--- smart-0.51/smart/channel.py~ 2005-12-14 20:27:17.000000000 +0100
++++ smart-0.51/smart/channel.py 2007-07-30 19:13:30.203002200 +0200
+@@ -296,8 +296,8 @@
+ filenames = os.listdir(os.path.dirname(channels.__file__))
+ infos = {}
+ for filename in filenames:
+- if filename.endswith("_info.py"):
+- type = filename[:-8].replace("_", "-")
++ if filename.endswith("_info.pyc"):
++ type = filename[:-9].replace("_", "-")
+ infos[type] = getChannelInfo(type)
+ return infos
+