summaryrefslogtreecommitdiffstats
path: root/gallery_dl/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'gallery_dl/__init__.py')
-rw-r--r--gallery_dl/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/gallery_dl/__init__.py b/gallery_dl/__init__.py
index 329e7ab..7504fa4 100644
--- a/gallery_dl/__init__.py
+++ b/gallery_dl/__init__.py
@@ -96,9 +96,9 @@ def parse_inputfile(file, log):
else:
# url
if " #" in line:
- line = line.partition(" #")[0]
+ line = line.partition(" #")[0].rstrip()
elif "\t#" in line:
- line = line.partition("\t#")[0]
+ line = line.partition("\t#")[0].rstrip()
if gconf or lconf:
yield util.ExtendedUrl(line, gconf, lconf)
gconf = []