1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2025-01-03 05:35:58 +00:00
This commit is contained in:
Jonas Borgström 2010-03-01 22:04:43 +01:00
parent b1cf8b161c
commit 8416de6219
5 changed files with 4 additions and 4 deletions

View file

@ -20,7 +20,7 @@ class AlreadyExists(KeyError):
IDLE = 'Idle' IDLE = 'Idle'
OPEN = 'Open' OPEN = 'Open'
ACTIVE = 'Active' ACTIVE = 'Active'
VERSION = 'DEDUPSTORE VERSION 1' VERSION = 'DEDUPESTORE VERSION 1'
def __init__(self, path): def __init__(self, path):
self.tid = '-1' self.tid = '-1'

View file

@ -3,11 +3,11 @@
from distutils.core import setup, Extension from distutils.core import setup, Extension
setup(name='Dedupstore', setup(name='Dedupestore',
version='1.0', version='1.0',
author='Jonas Borgström', author='Jonas Borgström',
author_email='jonas@borgstrom.se', author_email='jonas@borgstrom.se',
packages=['dedupstore'], packages=['dedupestore'],
ext_modules=[Extension('_chunkifier', ['dedupstore/_chunkifier.c'])], ext_modules=[Extension('_speedup', ['deduepstore/_speedup.c'])],
) )