Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
f2d279b
Initial windows build support
amon-ra Apr 24, 2014
ee31e9d
Windows port running local
amon-ra Apr 24, 2014
34338db
remote backup working
amon-ra Apr 26, 2014
c7255d4
Serve comand not used in windows
amon-ra Apr 26, 2014
0fa4845
Broken setup in linux
amon-ra Apr 26, 2014
cb895c1
added support to generate exe
amon-ra Apr 26, 2014
7a2f11a
support rsh command
amon-ra Apr 28, 2014
7c55225
64bit compilation
amon-ra May 5, 2014
c7120e2
Fixed some bugs
amon-ra May 6, 2014
c78f60b
fixes
amon-ra May 7, 2014
758e179
Initial windows build support
amon-ra Apr 24, 2014
93e9a83
Windows port running local
amon-ra Apr 24, 2014
44e7b75
remote backup working
amon-ra Apr 26, 2014
6a71071
Serve comand not used in windows
amon-ra Apr 26, 2014
9cf374f
Broken setup in linux
amon-ra Apr 26, 2014
c3a3ab2
added support to generate exe
amon-ra Apr 26, 2014
b86e2ef
support rsh command
amon-ra Apr 28, 2014
1105fc5
64bit compilation
amon-ra May 5, 2014
9987e6b
Fixed some bugs
amon-ra May 6, 2014
deeb2a0
fixes
amon-ra May 7, 2014
de0853d
Initial windows build support
amon-ra Apr 24, 2014
32a6971
Windows port running local
amon-ra Apr 24, 2014
dfe1265
remote backup working
amon-ra Apr 26, 2014
2301d43
Serve comand not used in windows
amon-ra Apr 26, 2014
7f6c2db
Broken setup in linux
amon-ra Apr 26, 2014
a28c7ac
added support to generate exe
amon-ra Apr 26, 2014
dfe324d
support rsh command
amon-ra Apr 28, 2014
b668df8
64bit compilation
amon-ra May 5, 2014
71f31cf
Fixed some bugs
amon-ra May 6, 2014
9c6991a
Revert f342621..fe877b9
amon-ra Dec 20, 2014
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion attic/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
import attic.chunker
import attic.crypto


class Error(Exception):
"""Error base class"""

Expand Down
4 changes: 2 additions & 2 deletions attic/remote.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def serve(self):
fcntl.fcntl(sys.stdout.fileno(), fcntl.F_SETFL, fl & ~os.O_NONBLOCK)
unpacker = msgpack.Unpacker(use_list=False)
while True:
r, w, es = select.select([sys.stdin], [], [], 10)
r, w, es = self.t.select([sys.stdin], [], [], 10)
if r:
data = os.read(sys.stdin.fileno(), BUFSIZE)
if not data:
Expand Down Expand Up @@ -312,4 +312,4 @@ def get_many(self, keys):
def cache_if_remote(repository):
if isinstance(repository, RemoteRepository):
return RepositoryCache(repository)
return repository
return repository