We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6a8005 commit 2a06065Copy full SHA for 2a06065
scdl/__init__.py
@@ -1,3 +1,3 @@
1
"""Python Soundcloud Music Downloader."""
2
3
-__version__ = 'v1.0.1'
+__version__ = 'v1.0.2'
scdl/scdl.py
@@ -59,7 +59,7 @@ def main():
59
60
# Parse argument
61
arguments = docopt(__doc__, version='0.1')
62
- print(arguments)
+ #print(arguments)
63
if arguments["<offset>"] is not None:
64
try:
65
offset=int(arguments["<offset>"])
setup.py
@@ -30,7 +30,7 @@
30
],
31
32
data_files=[
33
- (os.path.join(os.path.expanduser('~'), '.config/scdl/sample_scdl.cfg'), ['config/scdl.cfg'])
+ (os.path.join(os.path.expanduser('~'), '.config/scdl'), ['config/scdl.cfg'])
34
35
36
include_package_data=True,
0 commit comments