From b94c9125b37bb348a523951f6f6977522da1ab7c Mon Sep 17 00:00:00 2001 From: Arthur Lu Date: Sat, 12 Jun 2021 07:16:11 +0000 Subject: [PATCH] renamed cli_interface.py to interface.py --- src/cli/{cli_interface.py => interface.py} | 0 src/cli/superscript.py | 8 ++++++-- 2 files changed, 6 insertions(+), 2 deletions(-) rename src/cli/{cli_interface.py => interface.py} (100%) diff --git a/src/cli/cli_interface.py b/src/cli/interface.py similarity index 100% rename from src/cli/cli_interface.py rename to src/cli/interface.py diff --git a/src/cli/superscript.py b/src/cli/superscript.py index dfd0151..09ef513 100644 --- a/src/cli/superscript.py +++ b/src/cli/superscript.py @@ -3,10 +3,14 @@ # Notes: # setup: -__version__ = "0.8.6" +__version__ = "0.9.0" # changelog should be viewed using print(analysis.__changelog__) __changelog__ = """changelog: + 0.9.0: + - moved printing and logging related functions to interface.py (changelog will stay in this file) + - changed function return files for load_config and save_config to standard C values (0 for success, 1 for error) + - added local variables for config location 0.8.6: - added proper main function 0.8.5: @@ -187,7 +191,7 @@ def main(): splash(__version__) -def load_config(config_vector): +def load_config(path, config_vector): try: f = open(path, "r") except: