Skip to content

Commit 6b1d96b

Browse files
author
silver
committed
added the remaining OEM business units
1 parent 6b56b87 commit 6b1d96b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

link_editor.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,14 +130,14 @@ def main():
130130

131131
# Create the main window
132132
root = tk.Tk()
133-
root.title("HTML Link Modifier with UTM Parameters")
133+
root.title("HTML UTM Link Creator")
134134

135135
# Create entry fields for UTM parameters
136136
utm_unit_label = tk.Label(root, text="UTM Unit:")
137137
utm_unit_label.pack()
138138

139139
# define list of business units
140-
units = ["adms", "oep", "schol"]
140+
units = ["adms", "oem", "oep", "osfa", "regr", "schol", "scu"]
141141

142142
# converts the picklist value to a string I guess?
143143
# and sets the default unit on the picklist
@@ -164,7 +164,7 @@ def main():
164164
select_button.pack()
165165

166166
# Display a message to guide the user
167-
message_label = tk.Label(root, text="Choose a file, enter UTM parameters, then click 'Select HTML File' to save the modified HTML.")
167+
message_label = tk.Label(root, text="Enter UTM parameters, select an HTML file, and then save over the file you chose.")
168168
message_label.pack()
169169

170170
root.mainloop()

0 commit comments

Comments
 (0)