Blame SOURCES/beaker-anydbm.patch

821497
Index: Beaker-1.5.4/beaker/container.py
821497
===================================================================
821497
--- Beaker-1.5.4.orig/beaker/container.py
821497
+++ Beaker-1.5.4/beaker/container.py
821497
@@ -1,5 +1,6 @@
821497
 """Container and Namespace classes"""
821497
-import anydbm
821497
+# For python3 (will be converted as import dbsm as anydbm)
821497
+import anydbm as anydbm
821497
 import cPickle
821497
 import logging
821497
 import os