Compare commits
2 Commits
20230421-0
...
20230425-1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a94b2cc0d6 | ||
|
|
9ba8998c32 |
@@ -100,10 +100,10 @@ class Check_addresses_popup(Toplevel):
|
||||
value_color = "red"
|
||||
con = "*"
|
||||
|
||||
Label(new_frame, text=label, font=label_font).grid(row=self.x_row, column=0, sticky="W")
|
||||
Label(new_frame, text=con + str1 + con, fg=value_color).grid(row=self.x_row, column=1, sticky="W")
|
||||
Label(old_frame, text=label, font=label_font).grid(row=self.x_row, column=0, sticky="W")
|
||||
Label(old_frame, text=con + str2 + con, fg=value_color).grid(row=self.x_row, column=1, sticky="W")
|
||||
Label(new_frame, text=str(label), font=label_font).grid(row=self.x_row, column=0, sticky="W")
|
||||
Label(new_frame, text=con + str(str1) + con, fg=value_color).grid(row=self.x_row, column=1, sticky="W")
|
||||
Label(old_frame, text=str(label), font=label_font).grid(row=self.x_row, column=0, sticky="W")
|
||||
Label(old_frame, text=con + str(str2) + con, fg=value_color).grid(row=self.x_row, column=1, sticky="W")
|
||||
|
||||
self.x_row += 1
|
||||
|
||||
|
||||
@@ -1 +1 @@
|
||||
20230421-0031
|
||||
20230425-1355
|
||||
2
main.py
2
main.py
@@ -128,6 +128,8 @@ class ClercAttrib2Biz():
|
||||
with open(os.path.join(temp_dir,"config.dat"),"wb") as pickle_file:
|
||||
pickle.dump(self.config,pickle_file, pickle.HIGHEST_PROTOCOL)
|
||||
def load_config(self):
|
||||
if not os.path.exists(os.path.join(temp_dir, "config.dat")):
|
||||
self.save_config()
|
||||
with open(os.path.join(temp_dir, "config.dat"), "rb") as pickle_file:
|
||||
self.config = pickle.load(pickle_file)
|
||||
|
||||
|
||||
@@ -1 +1 @@
|
||||
VERSION = "20230421-0031"
|
||||
VERSION = "20230425-1355"
|
||||
Reference in New Issue
Block a user