FogBugz » FogBugzPy A Python wrapper for the FogBugz API Read More
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.9.1, 0.9.2, and 0.9.3

switch back to using BeautifulSoup.BeautifulSoup

Changeset 05f7d4e278b4

Parent 49e05b17b94e

by Profile picture of User 476Ben McCormack <benm@fogcreek.com>

Changes to one file · Browse files at 05f7d4e278b4 Showing diff from parent 49e05b17b94e Diff from another changeset...

Change 1 of 1 Show Entire File fogbugz.py Stacked
 
1
2
3
4
 
5
6
7
 
1
2
3
 
4
5
6
7
@@ -1,7 +1,7 @@
 import urllib  import urllib2   -from BeautifulSoup import BeautifulSoup, CData +from BeautifulSoup.BeautifulSoup import BeautifulSoup, CData    class FogBugzAPIError(Exception):   pass