diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2013-11-21 23:26:28 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2013-11-21 23:26:28 +0100 |
commit | b1c9c669365cea4fb94babd66076665685abc453 (patch) | |
tree | afc5e6da1f651a1126b46f44a6f10e0388f6e0e0 /setup.py | |
parent | a6a173c2fddf2fa38a69ca750431b7ca6932bcb0 (diff) |
Remove unnecessary slash in setup.py (Fixes #1778)
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -48,7 +48,7 @@ else: 'data_files': [ # Installing system-wide would require sudo... ('etc/bash_completion.d', ['youtube-dl.bash-completion']), ('share/doc/youtube_dl', ['README.txt']), - ('share/man/man1/', ['youtube-dl.1']) + ('share/man/man1', ['youtube-dl.1']) ] } if setuptools_available: |