Skip to content

Commit

Permalink
Removed debug printing.
Browse files Browse the repository at this point in the history
  • Loading branch information
paulsaxe committed Apr 26, 2024
1 parent c73e908 commit dae3868
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
3 changes: 3 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
=======
History
=======
2024.4.26 -- Removed debug printing
* Some debug printing was accidentally left in the code.

2024.4.22 -- Moving user preferences to ~/.seamm.d
* To better support Docker, moving ~/.seammrc to ~/.seamm.d/seamrc
* Moved seamm.ini from ~/SEAMM to ~/seamm.d since it only contains personal preferences.
Expand Down
7 changes: 0 additions & 7 deletions seamm_util/argument_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,15 +173,8 @@ def parse_args(self, args=None):
# Make directory and move if it does not exist
path = Path("~/.seamm.d/seamm.ini").expanduser()
tmp = Path("~/SEAMM/seamm.ini").expanduser()
print(f"{path=}")
print(f"{path.exists()=}")
print(f" {tmp=}")
print(f"{tmp.exists()=}")
if not path.parent.exists():
path.parent.mkdir(parents=True)
print("made directory")
else:
print("directory existed")

if tmp.exists() and not path.exists():
print("/ntext:")
Expand Down

0 comments on commit dae3868

Please sign in to comment.