Skip to content

Commit 61d29e6

Browse files
authored
Merge pull request #3 from Furglitch/nightly
Beta 1.0.2
2 parents 6dc845e + 735cded commit 61d29e6

File tree

6 files changed

+407
-383
lines changed

6 files changed

+407
-383
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ This is my first major work in Python, teaching myself the language by convertin
4141
```
4242
2. Build the executable:
4343
```sh
44-
pyinstaller -n 'Mod Organizer Separator Generator' --onefile -w interface.py backend.py --add-data "resources;resources" -i 'resources/icon.ico
44+
pyinstaller -n 'Mod Organizer Separator Generator' --onefile -w interface.py backend.py --add-data "resources;resources" -i 'resources/icon.ico'
4545
```
4646
3. The executable will be located in the `dist` directory.
4747

backend.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,12 +196,10 @@ def headerGet(type, header=None):
196196
def applyCasing(type, text):
197197
global catCasing, subCasing
198198
if type == "cat":
199-
print("catCasing: "+ catCasing)
200199
if catCasing == "Capitalize": return text.title()
201200
elif catCasing == "UPPER": return text.upper()
202201
elif catCasing == "lower": return text.lower()
203202
elif type == "sub":
204-
print("subCasing: "+ subCasing)
205203
if subCasing == "Capitalize": return text.title()
206204
elif subCasing == "UPPER": return text.upper()
207205
elif subCasing == "lower": return text.lower()

0 commit comments

Comments
 (0)