Rules implemented
[frenchie/icalparse.git] / parserrules.py
index 61a09e5..e66af2f 100644 (file)
@@ -4,15 +4,12 @@
 # rule(key, value)
 
 # Your functions are expected to return a (key, value) tuple or they will be treated as
-# if they don't exist (ie, the line will go through unhindered). Returning a value which
-# is boolean False will remove the offending line from the final  ICS. The easiest way
-# to pass a line back without changing it is to return True.
+# if they don't exist (ie, the line will go through unhindered). Returning an value which
+# is boolean False will remove the offending line from the final ICS (unless it's a None).
 
 # The doc string will be presented to the user when run as verbose, so please be polite
 
 def markEventsPublic(key, value):
        '''Marking private events public'''
        # Required as google are strict about the CLASS:PRIVATE/CLASS:CONFIDENTIAL lines
-       if key == 'CLASS':
-               return (key, 'PUBLIC')
-       return True
+       if key == 'CLASS': return (key, 'PUBLIC')

UCC git Repository :: git.ucc.asn.au