Merge lp:~lvh/divmod.org/remove-unsignedid-1269343 into lp:divmod.org

Proposed by Laurens Van Houtven
Status: Merged
Approved by: Tristan Seligmann
Approved revision: 2739
Merged at revision: 2740
Proposed branch: lp:~lvh/divmod.org/remove-unsignedid-1269343
Merge into: lp:divmod.org
Diff against target: 12 lines (+1/-1)
1 file modified
Axiom/axiom/store.py (+1/-1)
To merge this branch: bzr merge lp:~lvh/divmod.org/remove-unsignedid-1269343
Reviewer Review Type Date Requested Status
Tristan Seligmann Approve
Review via email: mp+202737@code.launchpad.net

Description of the change

This fixes a bug in the previously merged branch, where dbdir was not being passed as a kwarg.

To post a comment you must log in.
Revision history for this message
Tristan Seligmann (mithrandi) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'Axiom/axiom/store.py'
2--- Axiom/axiom/store.py 2014-01-22 14:52:54 +0000
3+++ Axiom/axiom/store.py 2014-01-22 19:37:59 +0000
4@@ -1346,7 +1346,7 @@
5 if self.dbdir is None:
6 dbdir = '(in memory)'
7
8- return "<Store {dbdir}@{id:#x}".format(dbdir, id=id(self))
9+ return "<Store {dbdir}@{id:#x}".format(dbdir=dbdir, id=id(self))
10
11
12 def findOrCreate(self, userItemClass, __ifnew=None, **attrs):

Subscribers

People subscribed via source and target branches