local
This commit is contained in:
parent
ec6a6e07e1
commit
d0323aee9f
3 changed files with 4 additions and 4 deletions
|
@ -3,7 +3,7 @@
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
import arguments
|
import arguments
|
||||||
import repository
|
import local
|
||||||
import synchronization
|
import synchronization
|
||||||
|
|
||||||
|
|
||||||
|
@ -28,7 +28,7 @@ def check(args):
|
||||||
|
|
||||||
|
|
||||||
def info(args):
|
def info(args):
|
||||||
print(repository.Repository(args))
|
print(local.Repository(args))
|
||||||
|
|
||||||
|
|
||||||
def sync(args):
|
def sync(args):
|
||||||
|
|
|
@ -3,15 +3,15 @@ import shutil
|
||||||
|
|
||||||
import arguments
|
import arguments
|
||||||
import file
|
import file
|
||||||
|
import local
|
||||||
import msys
|
import msys
|
||||||
import remote
|
import remote
|
||||||
import repository
|
|
||||||
|
|
||||||
|
|
||||||
class Synchronization:
|
class Synchronization:
|
||||||
def __init__(self, args):
|
def __init__(self, args):
|
||||||
self.remote = remote.Remote(args)
|
self.remote = remote.Remote(args)
|
||||||
self.repository = repository.Repository(args)
|
self.repository = local.Repository(args)
|
||||||
self.temporary = self.repository.get_temporary()
|
self.temporary = self.repository.get_temporary()
|
||||||
self.threads = args[arguments.THREADS]
|
self.threads = args[arguments.THREADS]
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue