cosmetic
[myplc.git] / bin / check-hrns.py
index 777d258..9f24bf2 100755 (executable)
@@ -21,14 +21,14 @@ def handle_nodes (sites,sites_by_id, dry_run, verbose):
                 if dry_run: continue
                 SetNodeHrn (node['node_id'],hrn)
             else:
-                if verbose: print "host %s OK"%node['hostname']
+                if verbose: print "Node %s OK"%node['hostname']
 
 def handle_persons (sites,sites_by_id, dry_run,verbose): 
     persons=GetPersons ({'peer_id':None},['person_id','email','hrn','site_ids'])
     for person in persons:
         how_many=len(person['site_ids'])
         if how_many !=1:
-            if verbose: print "person %s not in 1 site (%s instead) -- ignored"%(person['email'],how_many)
+            if verbose: print "Checking persons in exactly one site -- person %s in %s site(s) -- ignored"%(person['email'],how_many)
             continue
         try:    login_base=sites_by_id[person['site_ids'][0]]['login_base']
         except: print "Cannot handle person %s - site not found"%person['email']; continue