summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Silverstone <dsilvers@digital-scurf.org>2018-11-04 11:26:02 +0000
committerDaniel Silverstone <dsilvers@digital-scurf.org>2018-11-04 11:26:02 +0000
commit7f626ba0c9e9f091f9e677d4ed3a405dc54ba2f2 (patch)
tree6365cd39d5619c432506d29ee2b4db715490a6f9
parent9aadb640576810c5a54b4f53b8b7a07db9f515f9 (diff)
downloadnetsurf-test-7f626ba0c9e9f091f9e677d4ed3a405dc54ba2f2.tar.gz
netsurf-test-7f626ba0c9e9f091f9e677d4ed3a405dc54ba2f2.tar.bz2
Even more debug
-rwxr-xr-xcgi-bin/auth.cgi2
1 files changed, 1 insertions, 1 deletions
diff --git a/cgi-bin/auth.cgi b/cgi-bin/auth.cgi
index de08fe2..16cbf8f 100755
--- a/cgi-bin/auth.cgi
+++ b/cgi-bin/auth.cgi
@@ -21,7 +21,7 @@ gotuser = None
gotpass = None
def badauth(reason="NOAUTH"):
- print('result=BAD, username={}, password={}, reason={}'.format(gotuser, gotpass, reason))
+ print('result=BAD, username={}/{}, password={}/{}, reason={}'.format(gotuser, username, gotpass, password, reason))
raise SystemExit
if not auth: