Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 9 additions & 6 deletions uddup/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@


def banner():
print("""%s
_ _ ____ _
| | | | _ \ __| |_ _ _ __
| | | | | | |/ _` | | | | '_ \
print(r"""%s
_ _ ____ _
| | | | _ \ __| |_ _ _ __
| | | | | | |/ _` | | | | '_ \
| |_| | |_| | (_| | |_| | |_) |
\___/|____/ \__,_|\__,_| .__/
|_|
\___/|____/ \__,_|\__,_| .__/
|_|

%s# Coded By @2RS3C
%s""" % (Y, G, W))
Expand Down Expand Up @@ -141,6 +141,9 @@ def get_existing_pattern_urls(purl, uurls):


def get_query_params_keys(parsed_url_query):
if not parsed_url_query:
return []

keys = []
qparams = parsed_url_query.split('&')
for q in qparams:
Expand Down
Loading