Skip to content

Instantly share code, notes, and snippets.

View victornoel's full-sized avatar

Victor Noël victornoel

View GitHub Profile
File "lib/subliminal/subliminal.py", line 304, in run
result = plugin.list(task.filepath, task.languages)
File "lib/subliminal/plugins/Addic7ed.py", line 89, in list
return self.query(guess['series'], guess['season'], guess['episodeNumber'], release_group, filepath, languages)
File "lib/subliminal/plugins/Addic7ed.py", line 97, in query
page = urllib2.urlopen(req, timeout=self.timeout)
File "/usr/lib/python2.6/urllib2.py", line 126, in urlopen
return _opener.open(url, data, timeout)
File "/usr/lib/python2.6/urllib2.py", line 391, in open
response = self._open(req, data)
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>scenario1</artifactId>
<groupId>be.kuleuven.casas.examples.scenario1</groupId>
<version>0.0.1-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>be.kuleuven.casas.examples.scenario1</groupId>
<artifactId>scenario1-sa</artifactId>
<?xml version="1.0" encoding="UTF-8"?>
<definitions name="Truck"
targetNamespace="http://kuleuven.be/casas/scenario1/service/Truck"
xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:plnk="http://docs.oasis-open.org/wsbpel/2.0/plnktype"
xmlns:tnss="http://kuleuven.be/casas/scenario1/schema/TransportRequest"
xmlns:tns="http://kuleuven.be/casas/scenario1/service/Truck">
<types>
<xsd:schema targetNamespace="http://kuleuven.be/casas/scenario1/service/Truck">
<xsd:import schemaLocation="TransportRequest.xsd"
abstract class C {
type T
var r: T = _
}
object C {
def m[CC <: C](t: CC)(nl: CC#T) {
t.r = nl // type mismatch; found : nl.type (with underlying type CC#T) required: t.T
}
abstract class C {
type T
val r: T
}
object C {
def m(t: C): t.T = t.r
}
class Ex {