Author: tack
Date: Sat Feb 16 19:44:10 2008
New Revision: 3111

Log:
Unwrap unnecessarily long line; fix missing %


Modified:
   trunk/popcorn/src/generic.py

Modified: trunk/popcorn/src/generic.py
==============================================================================
--- trunk/popcorn/src/generic.py        (original)
+++ trunk/popcorn/src/generic.py        Sat Feb 16 19:44:10 2008
@@ -242,8 +242,7 @@
         for p in backends.manager.get_all_players():
             if not getattr(config, p).enabled and not p in exclude:
                 exclude.append(p)
-        cls = backends.manager.get_player_class(\
-        self._media, self._open_caps, exclude, player, self._window)
+        cls = backends.manager.get_player_class(self._media, self._open_caps, 
exclude, player, self._window)
 
         if self._player:
             # We already have a player. The player has to be stopped if
@@ -263,7 +262,7 @@
         if not cls:
             # No possible player.
             self.signals["failed"].emit()
-            raise PlayerError("No supported player found to play %s", 
self._media.url)
+            raise PlayerError("No supported player found to play %s" % 
self._media.url)
 
         if self._player:
             # Reuse player

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Freevo-cvslog mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to