Skip to content

Commit

Permalink
[2.4.10] Fix: password share
Browse files Browse the repository at this point in the history
  • Loading branch information
mauricelambert authored Jan 19, 2022
1 parent d21f78a commit e4010ea
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
10 changes: 6 additions & 4 deletions WebScripts/scripts/passwords/new_password_share.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

###################
# This file can share a password securely
# Copyright (C) 2021 Maurice Lambert
# Copyright (C) 2021, 2022 Maurice Lambert

# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
Expand All @@ -19,9 +19,11 @@
# along with this program. If not, see <https://www.gnu.org/licenses/>.
###################

"""This tools run scripts and display the result in a Web Interface.
"""
This tools run scripts and display the result in a Web Interface.
This file can share a password securely."""
This file can share a password securely.
"""

__version__ = "0.1.0"
__author__ = "Maurice Lambert"
Expand Down Expand Up @@ -196,7 +198,7 @@ def main() -> None:
if isinstance(string, str) and not string.isprintable():
raise ValueError(f"Strings must be printable: '{string}' is not.")

passwords.append()
passwords.append(password)
save(passwords, id_)

print(
Expand Down
2 changes: 1 addition & 1 deletion WebScripts/static/html/WebScripts.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="heading">
<tr bgcolor="#9286C2">
<td valign=bottom>&nbsp;<br>
<font color="#ffffff" face="helvetica, arial">&nbsp;<br><big><big><strong>WebScripts</strong></big></big> (version 2.4.8)</font></td
<font color="#ffffff" face="helvetica, arial">&nbsp;<br><big><big><strong>WebScripts</strong></big></big> (version 2.4.9)</font></td
><td align=right valign=bottom
><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="__init__.py">__init__.py</a></font></td></tr></table>
<p><tt>This&nbsp;tools&nbsp;run&nbsp;scripts&nbsp;and&nbsp;display&nbsp;the&nbsp;result&nbsp;in&nbsp;a&nbsp;Web&nbsp;Interface.</tt></p>
Expand Down

0 comments on commit e4010ea

Please sign in to comment.