Zlobivá 0058 má taky logovat, aspoň dočasně
This commit is contained in:
		
							parent
							
								
									3de0b5ca1d
								
							
						
					
					
						commit
						614d795b6a
					
				
					 1 changed files with 6 additions and 0 deletions
				
			
		|  | @ -6,6 +6,9 @@ from django.db import migrations | |||
| 
 | ||||
| from django.db.models import Q | ||||
| 
 | ||||
| import logging | ||||
| logger = logging.getLogger(__name__) | ||||
| 
 | ||||
| def poskladej_strom(apps, rodic, *texty): | ||||
| 	Text = apps.get_model('seminar', 'Text') | ||||
| 	TextNode = apps.get_model('seminar', 'TextNode') | ||||
|  | @ -42,6 +45,7 @@ def uloha_to_Uloha(apps,schema_editor): | |||
| 
 | ||||
| 	ulohy = Problem.objects.filter(typ = 'uloha') | ||||
| 	for uold in ulohy: | ||||
| 		logger.debug('u') | ||||
| 		unew = Uloha.objects.create( | ||||
| 			problem_ptr = uold, | ||||
| 			# Zakomentované fieldy by se už měly nacházet v příslušném problému | ||||
|  | @ -83,6 +87,7 @@ def clanek_to_Clanek(apps,schema_editor): | |||
| 
 | ||||
| 	clanky = Problem.objects.filter(Q(typ='org-clanek') | Q(typ='res-clanek')) | ||||
| 	for cl in clanky: | ||||
| 		logger.debug('c') | ||||
| 		# Vybereme vhodné číslo pro článek z čísla zadání a čísla řešení: | ||||
| 		if cl.cislo_zadani_old is None: | ||||
| 			cislo = cl.cislo_reseni_old | ||||
|  | @ -121,6 +126,7 @@ def tema_to_Tema(apps, schema_editor): | |||
| 	 | ||||
| 	temata = Problem.objects.filter(Q(typ = 'tema') | Q(typ='serial')) | ||||
| 	for t in temata: | ||||
| 		logger.debug('t') | ||||
| 		# Vymyslíme správně ročník: | ||||
| 		if t.cislo_zadani_old is None and t.cislo_reseni_old is None: | ||||
| 			rocnik = None | ||||
|  |  | |||
		Loading…
	
		Reference in a new issue
	
	 Pavel "LEdoian" Turinsky
						Pavel "LEdoian" Turinsky