For the qurious of you, here's what i did (and yes i'm a noob at freebsd):
WARNING: You're messing with system files and may render your FreeNAS useless for all i know. If you don't wan't to risk it, do as paleoN suggested: WAIT for the p1.
Official Fix:
http://support.freenas.org/changeset/9123375d#file0
It's a syntax error in line 3591 :
search = re.search(r'^Serial Number:[ \t\s]+(?P<serial>.+)', output, re.I)
Exchange it with: search = re.search(r'Serial Number:\s+(?P<serial>.+)', output, re.I)
The file system is read only so you can't just edit or overwrite the notifier.py file.
1. ssh in with root
2. cd /usr/local/www/freenasUI/middleware
3. make filesystem writeable: mount -uw / --> it's now writeable for root user
4. WinSCP with root user and go to /usr/local/www/freenasUI/middleware here is the notifier.py file
5. transfer notifier.py to local disk and open and edit it in a text editor (i used notepad++).
6. Save file and use WinSCP to transfer it back, overwriting the old one.
7. Close WinSCP
8. Make filesystem read only again in ssh session: mount -ur /
9. reboot freenas
Don't blame me if you mess it up though ;)