Skip to content

Commit

Permalink
fix typo in libweb
Browse files Browse the repository at this point in the history
enable debug
  • Loading branch information
andylytical committed Jan 10, 2024
1 parent d95a0ae commit 2e21644
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions go.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,6 @@ docker run -it --pull always \
--mount type=bind,src=$HOME,dst=/home \
-e JIRA_SERVER=jira.ncsa.illinois.edu \
-e JIRA_PROJECT=SVCPLAN \
-p 5000:5000 \
--entrypoint "/bin/bash" \
$REGISTRY/$REPO:$tag
2 changes: 1 addition & 1 deletion jiracmdline/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -269,4 +269,4 @@ def do_summary():


if __name__ == '__main__':
app.run()
app.run( debug=True )
2 changes: 1 addition & 1 deletion jiracmdline/libweb.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ def sanitize_key( key ):

def sanitize_val( val ):
temp = re.sub( ',', ' ', val )
return re.sub( '[^\r\n a-zA-Z0-9_\(\)-]', '', temp )
return re.sub( '[^\r\n a-zA-Z0-9_()-]', '', temp )


def sanitize_dict( dirty ):
Expand Down

0 comments on commit 2e21644

Please sign in to comment.