FIX: Fixed no-argumetnt call on random string window

main
Kamal Curi 4 years ago
parent ebc46a9184
commit 3eca40071a

Binary file not shown.

@ -122,6 +122,8 @@
A: Yes. You first create a password with a dummy entry in whichever field you wish to leave empty, and then modify it, leaving it empty.\\
\textbf{Q: Can I have a service with an empty password?}
A: Yes. With \texttt{PSWD::0}
\textbf{Q: Can I migrate my password file from one system to another?}\\
A: The password file in \texttt{\textdollar HOME/.pasfile.csv.gpg} contains all saved passwords, that file can be moved from one home directory to another.
\subsection{Contact}
The author of this software can be contacted in kamalcuri@outlook.com.

@ -456,7 +456,7 @@ def rwin():
ranWin = curses.newwin(3, 49, int(TERM_LINES/2), int(TERM_COLS/2))
ranWin.border()
ranWin.addstr(0, 1, "Random string")
ranWin.addstr(1, 1, randString())
ranWin.addstr(1, 1, randString(45))
ranWin.refresh()
ranWin.getch()

Loading…
Cancel
Save