[pitivi] Rename EffectsHandler class to EffectsHandler so it respects the naming convention
- From: Edward Hervey <edwardrv src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [pitivi] Rename EffectsHandler class to EffectsHandler so it respects the naming convention
- Date: Wed, 22 Sep 2010 13:39:39 +0000 (UTC)
commit 7b9aae0c6db1c1f090d32944e37e4e01ec970c06
Author: Thibault Saunier <tsaunier gnome org>
Date: Mon Jul 12 22:27:39 2010 -0400
Rename EffectsHandler class to EffectsHandler so it respects the naming convention
pitivi/application.py | 4 ++--
pitivi/effects.py | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/pitivi/application.py b/pitivi/application.py
index 77697e3..c9671a0 100644
--- a/pitivi/application.py
+++ b/pitivi/application.py
@@ -40,7 +40,7 @@ import pitivi.instance as instance
from pitivi.check import initial_checks
from pitivi.device import get_probe
-from pitivi.effects import effectsHandler
+from pitivi.effects import EffectsHandler
from pitivi.configure import APPNAME
from pitivi.settings import GlobalSettings
from pitivi.threads import ThreadMaster
@@ -136,7 +136,7 @@ class Pitivi(Loggable, Signallable):
self.plugin_manager = PluginManager(
self.settings.get_local_plugin_path(),
self.settings.get_plugin_settings_path())
- self.effects = effectsHandler()
+ self.effects = EffectsHandler()
self.deviceprobe = get_probe()
self.projectManager = ProjectManager()
diff --git a/pitivi/effects.py b/pitivi/effects.py
index 370250a..609ead8 100644
--- a/pitivi/effects.py
+++ b/pitivi/effects.py
@@ -54,7 +54,7 @@ USELESS_EFFECTS = ["colorconvert", "coglogoinsert", "festival",]
-class effectsHandler(object):
+class EffectsHandler(object):
"""
Handles all the effects
"""
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]