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

merge

Changeset 0fa246811768

Parents 05f7d4e278b4

Parents f290aa4a51cf

by Profile picture of User 10Tyler Hicks-Wright <tghw@fogcreek.com>

Changes to 4 files · Browse files at 0fa246811768 Showing diff from parent 05f7d4e278b4 f290aa4a51cf Diff from another changeset...

Change 1 of 1 Show Entire File .hgignore Stacked
 
1
2
3
4
 
 
 
 
 
1
2
3
 
4
5
6
 
@@ -1,4 +1,6 @@
 syntax: glob  *.pyc  *.ini - +*.exe +build/** +dist/** \ No newline at end of file
Change 1 of 1 Show Entire File __init__.py Stacked
 
 
 
1
Change 1 of 1 Show Entire File fogbugz.py Stacked
 
26
27
28
29
 
30
31
32
 
26
27
28
 
29
30
31
32
@@ -26,7 +26,7 @@
  self._opener = urllib2.build_opener()   try:   soup = BeautifulSoup(self._opener.open(url + 'api.xml')) - except urllib2.URLError: + except URLError:   raise FogBugzConnectionError("Library could not connect to the FogBugz API. Either this installation of FogBugz does not support the API, or the url, %s, is incorrect." % (self._url,))   self._url = url + soup.response.url.string   self.currentFilter = None
Change 1 of 1 Show Entire File setup.py Stacked
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
 
@@ -1,0 +1,14 @@
+from distutils.core import setup + +setup(name='fogbugz', + version='0.9.0', + py_modules=['fogbugz'], + packages=['BeautifulSoup'], + description='Python library for interacting with the FogBugz API', + author='Tyler Hicks-Wright', + author_email='customer-service@fogcreek.com', + maintainer='Fog Creek Software', + maintainer_email='customer-service@fogcreek.com', + url='https://developers.kilnhg.com/Repo/FogBugz/Group/FogBugzPy', + download_url='https://developers.kilnhg.com/Repo/FogBugz/Group/FogBugzPy' + ) \ No newline at end of file