Browse Source

MergeKonflikte beseitigt

Vinzent Reiß 7 years ago
parent
commit
bc2b8bd5c4
1 changed files with 3 additions and 12 deletions
  1. 3 12
      ToolV00.py

+ 3 - 12
ToolV00.py

@@ -219,15 +219,12 @@ def NotenspiegelAusgabe():
219 219
 		Label(root, width =  int(float(Notenverteilung[i])/float(len(Studenten))*128), background = Farbauswahl[Farbe]).grid(row = i, column = 1, sticky = W, pady = 4)
220 220
 	Button(root, text = "Beenden", command = root.destroy).grid(row = 0, column = 2)
221 221
 	root.mainloop()
222
-<<<<<<< HEAD
223
-=======
224 222
 def DatenAnpassen():
225 223
 	for i in range(len(Studenten)):
226 224
 		if Studenten[i][0] >= 10**15:
227 225
 			Studenten[i][0] = Studenten[i][0] - (Studenten[i][0] / 10**15) * 10**15
228 226
 		if len(Studenten[i][1]) >= 16:
229 227
 			Studenten[i][1] = Studenten[i][1][0:15]
230
->>>>>>> 2476b640e1efcc92353c19f0d6771d4ff5a092d0
231 228
 def TextdateiErstellen():
232 229
 	Datei = open(name, "w")
233 230
 	Datei.write("Name der Klausur:\t%s\n" % (name))
@@ -301,15 +298,9 @@ def AlteKlausur():
301 298
 		NichtExistenzVerkuenden()
302 299
 mainroot = Tk()
303 300
 mainroot.title("Hauptmenue")
304
-<<<<<<< HEAD
305
-Button(mainroot, text = "Neue Klausur", command = NeueKlausur).grid(row = 1, column = 0)
306
-Button(mainroot, text = "Alte Klausur bearbeiten", command = AlteKlausur).grid(row = 2, column = 0)
307
-Button(mainroot, text = "Beenden", foreground = "red", command = mainroot.destroy).grid(row = 4, column = 0)
308
-=======
309 301
 button1 = Button(mainroot, text = "Neue Klausur", command = NeueKlausur)
310
-button2 = Button(mainroot, text = "Alte Klausur bearbeiten", command = AlteKlausur)
311
-button1.grid()
312
-button2.grid()
313
->>>>>>> 2476b640e1efcc92353c19f0d6771d4ff5a092d0
302
+button1.grid(row = 1, column = 0)
303
+button2 = Button(mainroot, text = "Alte Klausur erweitern", command = AlteKlausur)
304
+button2.grid(row = 2, column = 0)
314 305
 mainroot.mainloop()
315 306