File: noxpra.patch

package info (click to toggle)
python-webm 0.2.4-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 684 kB
  • ctags: 103
  • sloc: python: 501; makefile: 24
file content (18 lines) | stat: -rw-r--r-- 511 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Last-Update: 2014-06-07
Forwarded: yes
Author: Dmitry Smirnov <onlyjob@member.fsf.org>
Description: correct import -- standalone, not bundled.

--- a/webm/handlers.py
+++ b/webm/handlers.py
@@ -126,9 +126,9 @@
         :param filename: The file's name to be loaded
         :type filename: string
         :rtype: WebPHandler
         """
-        from xpra.codecs.webm import decode
+        from webm import decode
 
         data = file(filename, "rb").read()
         width, height = decode.GetInfo(data)