summaryrefslogtreecommitdiff
path: root/issues.py
diff options
context:
space:
mode:
Diffstat (limited to 'issues.py')
-rwxr-xr-xissues.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/issues.py b/issues.py
index 4b275f5..40270b7 100755
--- a/issues.py
+++ b/issues.py
@@ -20,9 +20,7 @@ print 'Parsing XML export...'
soup = BeautifulStoneSoup(open(xml_file_name, 'r'), convertEntities=BeautifulStoneSoup.ALL_ENTITIES)
trackers = soup.document.find('trackers', recursive=False).findAll('tracker', recursive=False)
-if len(trackers) > 1:
- print 'Multiple trackers not yet supported, sorry'
- sys.exit(1)
+assert len(trackers) == 1, 'Multiple trackers not yet supported, sorry'
tracker = trackers[0]
from urllib import urlencode