Laurens Van Houtven has proposed merging 
lp:~lvh/divmod.org/remove-unsignedid-1269343 into lp:divmod.org.

Requested reviews:
  Tristan Seligmann (mithrandi)

For more details, see:
https://code.launchpad.net/~lvh/divmod.org/remove-unsignedid-1269343/+merge/202737

This fixes a bug in the previously merged branch, where dbdir was not being 
passed as a kwarg.
-- 
https://code.launchpad.net/~lvh/divmod.org/remove-unsignedid-1269343/+merge/202737
Your team Divmod-dev is subscribed to branch lp:divmod.org.
=== modified file 'Axiom/axiom/store.py'
--- Axiom/axiom/store.py	2014-01-22 14:52:54 +0000
+++ Axiom/axiom/store.py	2014-01-22 19:37:59 +0000
@@ -1346,7 +1346,7 @@
         if self.dbdir is None:
             dbdir = '(in memory)'
 
-        return "<Store {dbdir}@{id:#x}".format(dbdir, id=id(self))
+        return "<Store {dbdir}@{id:#x}".format(dbdir=dbdir, id=id(self))
 
 
     def findOrCreate(self, userItemClass, __ifnew=None, **attrs):

-- 
Mailing list: https://launchpad.net/~divmod-dev
Post to     : [email protected]
Unsubscribe : https://launchpad.net/~divmod-dev
More help   : https://help.launchpad.net/ListHelp

Reply via email to