Merge lp:~samstoll1/tiqit/autons into lp:tiqit

Proposed by Sam Stoll
Status: Rejected
Rejected by: Sam Stoll
Proposed branch: lp:~samstoll1/tiqit/autons
Merge into: lp:tiqit
Diff against target: 12 lines (+1/-1)
1 file modified
scripts/frontend/classes.py (+1/-1)
To merge this branch: bzr merge lp:~samstoll1/tiqit/autons
Reviewer Review Type Date Requested Status
Ensoft Open Source Pending
Review via email: mp+285396@code.launchpad.net

Description of the change

Fix bug where trying to view bugs in some unsupported projects gives 500 error and traceback.

To post a comment you must log in.
lp:~samstoll1/tiqit/autons updated
12. By Sam Stoll <email address hidden>

Fix typo

Unmerged revisions

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'scripts/frontend/classes.py'
--- scripts/frontend/classes.py 2014-11-10 14:11:37 +0000
+++ scripts/frontend/classes.py 2016-02-08 18:55:37 +0000
@@ -63,7 +63,7 @@
6363
64 fmtpath = search_paths(plugins.get_format_paths() + fmtdirs, fmtname)64 fmtpath = search_paths(plugins.get_format_paths() + fmtdirs, fmtname)
6565
66 if os.path.exists(fmtpath):66 if fmtpath and os.path.exists(fmtpath):
67 with open(fmtpath, 'r') as f:67 with open(fmtpath, 'r') as f:
68 fmt = f.read()68 fmt = f.read()
69 elif self.className != 'default':69 elif self.className != 'default':

Subscribers

People subscribed via source and target branches