mirror of https://github.com/nealey/firebot
10 lines
137 B
Python
10 lines
137 B
Python
|
#! /usr/bin/env python
|
||
|
import anydbm
|
||
|
|
||
|
d = anydbm.open('info.db')
|
||
|
n = anydbm.open('new.db', 'c')
|
||
|
|
||
|
for k,v in d.iteritems():
|
||
|
n[k] = v
|
||
|
|