crowdin_sync: Move welcome message below argparser

* so it doesn't show when the help message is displayed

Change-Id: If05a3c57bf8e354a66543f94e69da5a39aa27ba7
diff --git a/crowdin_sync.py b/crowdin_sync.py
index 31e3abf..2bce4f4 100755
--- a/crowdin_sync.py
+++ b/crowdin_sync.py
@@ -70,10 +70,6 @@
 
 ####################################################################################################
 
-print('Welcome to the CM Crowdin sync script!')
-
-####################################################################################################
-
 parser = argparse.ArgumentParser(description='Synchronising CyanogenMod\'s translations with Crowdin')
 sync = parser.add_mutually_exclusive_group()
 parser.add_argument('-u', '--username', help='Gerrit username', required=True)
@@ -86,6 +82,10 @@
 username = argsdict['username']
 default_branch = argsdict['branch']
 
+####################################################################################################
+
+print('Welcome to the CM Crowdin sync script!')
+
 ############################################# PREPARE ##############################################
 
 print('\nSTEP 0: Checking dependencies & define shared variables')