crowdin: Fix console-output on download

* When we have errors or messages during cleanup,
  the string is currently in the wrong line

Change-Id: Ic06509019f96c02f9602330908e612d7a77deb01
diff --git a/crowdin_sync.py b/crowdin_sync.py
index f64e1d4..924c7c1 100755
--- a/crowdin_sync.py
+++ b/crowdin_sync.py
@@ -137,7 +137,7 @@
     try:
         fh = open(path, 'r+')
     except:
-        print('Something went wrong while opening file %s' % (path))
+        print('\nSomething went wrong while opening file %s' % (path))
         return
 
     XML = fh.read()
@@ -173,8 +173,8 @@
         # Every occurance of the string has to be removed when no string with the same name and
         # 'product=default' (or no product attribute) was found
         if not hasProductDefault:
-            print("{0}: Found string '{1}' with missing 'product=default' attribute"
-                  .format(path, stringName))
+            print("\n{0}: Found string '{1}' with missing 'product=default' attribute"
+                  .format(path, stringName), end='')
             for string in stringsWithSameName:
                 tree.remove(string)
                 alreadyRemoved.append(string)
@@ -213,7 +213,7 @@
     # Remove files which don't have any translated strings
     contentList = list(tree)
     if len(contentList) == 0:
-        print('Removing ' + path)
+        print('\nRemoving ' + path)
         os.remove(path)
 
 
@@ -246,7 +246,7 @@
 
 
 def push_as_commit(config_files, base_path, path, name, branch, username):
-    print('Committing %s on branch %s: ' % (name, branch), end='')
+    print('\nCommitting %s on branch %s: ' % (name, branch), end='')
 
     # Get path
     project_path = path