You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When trying to configure the log file name , I get above error, unless the file already exists, While this is ok for a script file, a log file is mostly a new file. Following changes were made in Stream.py line 511
if os.path.exists(new_file_name):
to
if os.path.dirname(new_file_name) == "" or os.path.exists(os.path.dirname(new_file_name)):
self.logging_file = new_file_name
Furthermore for clarity, line 736 in TerminalUserinterface.py was changed from
print("Enter a name for the Script file")
to
print("Enter a name for the log file")
The text was updated successfully, but these errors were encountered:
When trying to configure the log file name , I get above error, unless the file already exists, While this is ok for a script file, a log file is mostly a new file. Following changes were made in Stream.py line 511
to
if os.path.dirname(new_file_name) == "" or os.path.exists(os.path.dirname(new_file_name)):
self.logging_file = new_file_name
Furthermore for clarity, line 736 in TerminalUserinterface.py was changed from
print("Enter a name for the Script file")
to
print("Enter a name for the log file")
The text was updated successfully, but these errors were encountered: