summaryrefslogtreecommitdiff
path: root/ga_wrapper
diff options
context:
space:
mode:
Diffstat (limited to 'ga_wrapper')
-rw-r--r--ga_wrapper/wrapper.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ga_wrapper/wrapper.py b/ga_wrapper/wrapper.py
index e870cf1..4083e36 100644
--- a/ga_wrapper/wrapper.py
+++ b/ga_wrapper/wrapper.py
@@ -1,5 +1,5 @@
'''
-By eroen, 2013
+By eroen, 2013 - 2016
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
@@ -61,7 +61,7 @@ def wget_wrapper(args):
proc = subprocess.Popen(['git', 'annex', 'get', outfile],
stdout=subprocess.PIPE)
(stdoutdata, _) = proc.communicate()
- print('\n'.join(stdoutdata.decode().split()))
+ print('\n'.join(stdoutdata.decode().splitlines()))
status = proc.returncode
return status