我对python脚本的这一部分有意见。当我运行它时,它抛出以下错误:
IOError: [Errno 0] Error
在一个随机的元素中 dbCur
(查询结果)。
这是我的密码:
dbCur.execute("SELECT parent_name FROM crowd.cwd_membership WHERE child_name = \'"+source+"\'")
for group in dbCur:
code = 999
# Check sul nome visualizzato
if ('-' in group):
print "Aggiungo il gruppo: ", group[0], " all' utente di destinazione..."
code = giveGroup(jira,target,group[0])
if (code != 400 or code != 404):
# Se andata a buon fine
print " ...Gruppo aggiunto con successo \n"
if (code == 400 or code == 404):
# Se utente o gruppo non trovati, manda in review manuale
requireReview = True
if (code==999):
# Se il nome non è corretto O non esiste, non fa partire la giveGroup
print "...Nome gruppo non valido, "
autogrant_crowd_clog.logger.info("Errore nel nome del gruppo: "+group[0]+ " l'inserimento è stato saltato.")
暂无答案!
目前还没有任何答案,快来回答吧!