Merge lp:~thisfred/desktopcouch/lp-673641 into lp:desktopcouch

Proposed by Eric Casteleijn
Status: Merged
Approved by: Eric Casteleijn
Approved revision: 270
Merged at revision: 269
Proposed branch: lp:~thisfred/desktopcouch/lp-673641
Merge into: lp:desktopcouch
Diff against target: 12 lines (+1/-1)
1 file modified
desktopcouch/application/start_local_couchdb.py (+1/-1)
To merge this branch: bzr merge lp:~thisfred/desktopcouch/lp-673641
Reviewer Review Type Date Requested Status
Roberto Alsina (community) Approve
Chad Miller (community) Approve
Review via email: mp+56634@code.launchpad.net

Commit message

For loop was missing break statement so would always find last rather than first occurrence

Description of the change

For loop was missing break statement so would always find last rather than first occurrence

To post a comment you must log in.
Revision history for this message
Chad Miller (cmiller) :
review: Approve
Revision history for this message
Roberto Alsina (ralsina) wrote :

+1 trivial

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'desktopcouch/application/start_local_couchdb.py'
2--- desktopcouch/application/start_local_couchdb.py 2011-01-25 17:58:49 +0000
3+++ desktopcouch/application/start_local_couchdb.py 2011-04-06 18:48:44 +0000
4@@ -138,7 +138,7 @@
5 template_path = os.path.join(base, "desktopcouch", "couchdb.tmpl")
6 if os.path.exists(template_path):
7 bookmark_template = os.path.abspath(template_path)
8-
9+ break
10 fp = open(bookmark_template)
11 html = fp.read()
12 fp.close()

Subscribers

People subscribed via source and target branches