Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.buildout
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
isaak yansane-sisk
slapos.buildout
Commits
6f10302b
Commit
6f10302b
authored
May 10, 2011
by
Lucas Carvalho
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
slapos-buildout should not depend of simplejson.
parent
052fca7c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
src/zc/buildout/networkcache.py
src/zc/buildout/networkcache.py
+1
-2
No files found.
src/zc/buildout/networkcache.py
View file @
6f10302b
...
...
@@ -18,7 +18,6 @@ import urllib
import
posixpath
import
base64
import
hashlib
import
json
def
_get_hash_from_file
(
path
,
hash_object
):
...
...
@@ -87,7 +86,7 @@ def get_sha256sum_from_networkcached(network_cache, url, logger):
try
:
result
=
urllib
.
urlopen
(
network_cached_url
)
if
int
(
result
.
code
)
==
200
:
return
json
.
loads
(
result
.
read
().
strip
()).
get
(
'sha256sum'
,
None
)
return
result
.
read
().
strip
(
)
logger
.
info
(
'The url is not cached yet: %s'
%
url
)
except
IOError
,
e
:
logger
.
info
(
'An error occurred to get sha256sum of url %s. %s'
%
\
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment