Removed comments. Fixed minor issue.
This commit is contained in:
parent
fac219a7ac
commit
222bd388a3
2 changed files with 1 additions and 12 deletions
11
graph.py
11
graph.py
|
@ -141,17 +141,6 @@ class Graph:
|
||||||
break
|
break
|
||||||
else:
|
else:
|
||||||
results.update(v.getNodeCloud({}))
|
results.update(v.getNodeCloud({}))
|
||||||
# noAuto = False
|
|
||||||
# for ksub,vsub in v.getNodeCloud({}).iteritems():
|
|
||||||
# if not vsub.autoupdater or (branch and vsub.branch != branch):
|
|
||||||
# #break
|
|
||||||
# noAuto = True
|
|
||||||
# self.nodes_no_autoupdater[ksub] = vsub
|
|
||||||
# #else:
|
|
||||||
# if not noAuto:
|
|
||||||
# results.update(v.getNodeCloud({}))
|
|
||||||
# else:
|
|
||||||
# self.nodes_no_geo.update(v.getNodeCloud({}))
|
|
||||||
print "Result:",len(results), region
|
print "Result:",len(results), region
|
||||||
return results
|
return results
|
||||||
|
|
||||||
|
|
2
node.py
2
node.py
|
@ -105,4 +105,4 @@ class Node(object):
|
||||||
if result['cached'] == False:
|
if result['cached'] == False:
|
||||||
time.sleep(1)
|
time.sleep(1)
|
||||||
else:
|
else:
|
||||||
self['geodata'] = None
|
self.getodata = None
|
Loading…
Add table
Add a link
Reference in a new issue