~ubuntu-branches/ubuntu/utopic/radiotray/utopic-proposed

« back to all changes in this revision

Viewing changes to debian/patches/04_extend_time_out.patch

  • Committer: Bazaar Package Importer
  • Author(s): Elías Alejandro Año Mendoza
  • Date: 2010-11-19 17:50:22 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20101119175022-h92mhyl3xamzouq2
Tags: 0.6.1-1
* New upstream release
* Updated Standards-Version to 3.9.1 
* Upstream fixed feature to work with UTF-8 (Closes: #585101)
* Added debian/pyversions
* Updated debian/copyright
  + Added new copyrights
* Switch to dpkg-source 3.0 (quilt) format
  + Removed README.source, no longer necessary
  + DEP-3 style header to patches
* debian/patches
  + Removed 02_desktop_file.patch (Upstream has updated)
  + Removed 03_python_issues.patch (Upstream has included)
  + Removed 04_extend_time_out.patch (Upstream has fixed)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
Index: radiotray-0.6/src/StreamDecoder.py
2
 
Patch to extend the time out to connect some radios
3
 
===================================================================
4
 
--- radiotray-0.6.orig/src/StreamDecoder.py     2010-06-13 21:09:59.000000000 -0500
5
 
+++ radiotray-0.6/src/StreamDecoder.py  2010-06-13 21:10:24.000000000 -0500
6
 
@@ -50,7 +50,7 @@
7
 
         myHeaders = {'Range':'bytes=0-20'}
8
 
         req = urllib2.Request(url, headers=myHeaders)
9
 
         try:
10
 
-            f = urllib2.urlopen(req, timeout=40)
11
 
+            f = urllib2.urlopen(req)
12
 
 
13
 
         except urllib2.URLError, e:
14
 
             print "No radio stream found for %s" % url