mirror of
https://github.com/borgbackup/borg.git
synced 2025-01-03 05:35:58 +00:00
Rename.
This commit is contained in:
parent
b1cf8b161c
commit
8416de6219
5 changed files with 4 additions and 4 deletions
|
@ -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'
|
6
setup.py
6
setup.py
|
@ -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'])],
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue