commit b2e12eff3f3c213ad7887d64b13cbb41783f2b9b
Author: Facundo Batista <facundo@taniquetil.com.ar>
Date:   Sat Mar 14 19:45:02 2015 -0300

    New parsing of Conectate after-auth page.

Index: encuentro/encuentro/network.py
===================================================================
--- encuentro.orig/encuentro/network.py	2015-04-28 21:49:10.924533944 +0200
+++ encuentro/encuentro/network.py	2015-04-28 21:49:10.920534106 +0200
@@ -112,8 +112,9 @@
         logger.debug("Browser download, got html len %d", len(html))
 
         # download from the new url
+        html = sess.get(self.url).content
         soup = bs4.BeautifulSoup(html)
-        new_url = soup.find(attrs={'class': 'descargas'}).find('a')['href']
+        new_url = soup.find(attrs={'class': 'descargas panel row'}).find('a')['href']
         logger.debug("Opening final url %r", new_url)
         content = urllib2.urlopen(new_url)
         try:
