You will need to reset your timezone and date.  I live in America's Eastern time zone (GMT-5) and I had to set my /etc/localtime symlink from GMT-5 to New_York then reset the date to get Anki to start syncing.  This is a problem with the Pandora's first-run wizard.  Your /etc/localtime symlink should point to a CITY in your time zone, not to its GMT+/-# value.
To set the clock properly for syncing, first see what timezones are available
	
	
	
		Code:
	
	
		cd /usr/share/zoneinfo
ls
	 
 Find your continent in that list, then cd to it and see available cities.
	
	
Find a city in your timezone.  Now replace the localtime symlink with the city you found.
	
	
	
		Code:
	
	
		sudo ln -sf New_York /etc/localtime
	 
 Sometimes this setting doesn't stick.  To make it permanent for sure, set the TZ environment variable add it to bashrc:
	
	
	
		Code:
	
	
		export TZ=America/New_York
echo "export TZ=America/New_York" >>~/.bashrc
	 
 Your timezone is now set properly, but now you have to reset the date.  To do this, use the "date" command.  The parameter must be in MMDDHHMMYYYY format
	
	
Now restart your Pandora.  Anki should not complain about your clock anymore when you sync.