Skip to content

Commit

Permalink
Fix github pages - move all files
Browse files Browse the repository at this point in the history
  • Loading branch information
root authored and root committed Jul 9, 2024
1 parent 124c4de commit c5838c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions init_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ def load_config_from_env():
def attach_screenshot(filename):
logging.basicConfig(level=logging.DEBUG)
if config["browser"] == "mobile":
filename = config["browser"].upper() + "_" + config["device"] + "_" + get_browser_version() + "_" + filename + ".png"
filename = config["browser"] + "_" + config["device"] + "_" + get_browser_version() + "_" + filename + ".png"
else:
filename = config["browser"].upper() + "_" + get_browser_version() + "_" + filename + "_" + ".png"
filename = config["browser"] + "_" + get_browser_version() + "_" + filename + ".png"

directory = os.path.dirname(filename)
if directory:
Expand Down

0 comments on commit c5838c1

Please sign in to comment.