refactoring note to self
authorBryan <btbonval@gmail.com>
Thu, 16 Jan 2014 03:49:32 +0000 (22:49 -0500)
committerBryan <btbonval@gmail.com>
Thu, 16 Jan 2014 03:49:32 +0000 (22:49 -0500)
karmaworld/apps/notes/models.py

index 65365c884cd08c86a11d51f9cbc780edf714e631..e9d5ad4ee82cc497680abd6d92be0894828a2e35 100644 (file)
@@ -228,7 +228,7 @@ class Note(Document):
         # Maybe run checksums if possible to confirm its really done?
         # (but then you gotta wonder was the original correct or is the new
         # one correct)
-        if note.static_html:
+        if self.static_html:
             return
         # upload the HTML file to static host if it is not already there
         filepath = self.get_relative_s3_path()
@@ -247,9 +247,9 @@ class Note(Document):
         # or
         # file was just uploaded successfully to filepath
         # Regardless, set note as uploaded.
-        note.static_html = True
+        self.static_html = True
         if do_save:
-            note.save()
+            self.save()
 
     def get_absolute_url(self):
         """ Resolve note url, use 'note' route and slug if slug