From 4bbf061085ba850730a5eb0e676241efc114aafc Mon Sep 17 00:00:00 2001 From: Connor Olding Date: Tue, 29 Apr 2014 08:52:55 -0700 Subject: [PATCH] unbreak it --- unsync.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unsync.py b/unsync.py index 780062a..808d2bc 100755 --- a/unsync.py +++ b/unsync.py @@ -42,7 +42,7 @@ def shouldsync(md): if sync: sync = sync[0].lower() - return sync == 'yes' or type(rating) == int and rating >= 3 and not sync is 'no' and not sync is 'space' + return sync == 'yes' or type(rating) == int and rating >= 3 and sync != 'no' and sync != 'space' def fixmetadata(md): md['artist'] = md.get('artist', u"Unknown Artist")