1
0
mirror of https://github.com/instaloader/instaloader.git synced 2024-09-11 16:22:24 +02:00

Remove extraneous newlines

Upps, forgot that I was programming Python...
This commit is contained in:
Alexander Graf 2016-07-12 21:10:48 +02:00
parent fde8396cb8
commit 08515ebfa2

View File

@ -283,9 +283,9 @@ def main():
[0,0] if args.no_sleep else [0.25,2], args.quiet)
except (ProfileNotExistsException, ProfileHasNoPicsException) as err:
failedtargets.append(target)
print("%s\n" % err, file=sys.stderr)
print("%s" % err, file=sys.stderr)
if len(args.targets) > 1 and len(failedtargets) > 0:
print("Errors occured (see above) while downloading profiles: %s\n" %
print("Errors occured (see above) while downloading profiles: %s" %
", ".join(failedtargets), file=sys.stderr)
if __name__ == "__main__":