Duplication of rstrip unnecessary in link_assets function

Thanks for catching AVRS!
This commit is contained in:
Christopher Allan Webber 2012-08-12 12:49:14 -04:00
parent 549000d991
commit 5257f5f554

View File

@ -50,7 +50,7 @@ def link_assets(theme, link_dir, printer=simple_printer):
which should be printable. which should be printable.
""" """
link_dir = link_dir.rstrip(os.path.sep) link_dir = link_dir.rstrip(os.path.sep)
link_parent_dir = os.path.split(link_dir.rstrip(os.path.sep))[0] link_parent_dir = os.path.split(link_dir)[0]
results = [] results = []