Fixed error when .swp files in /notes or /projects
authorDylan Lloyd <dylan@psu.edu>
Fri, 25 Mar 2011 02:40:28 +0000 (22:40 -0400)
committerDylan Lloyd <dylan@psu.edu>
Fri, 25 Mar 2011 02:40:28 +0000 (22:40 -0400)
publish_notes.py
publish_projects.py

index 2f99dc6..331030c 100755 (executable)
@@ -25,6 +25,7 @@ for row in results:
     existing_titles.append(row[0])
 
 for note in notes:
+    if note[:1] == '.': continue
     if note == 'index.php' or note == 'notes.php': continue
     url = note[:note.index('.')]
     f = open(os.path.join(NOTES_DIRECTORY, note))
index 6e538d9..14a5772 100755 (executable)
@@ -25,9 +25,10 @@ for row in results:
     existing_titles.append(row[0])
 
 for note in notes:
+    if (note[:1] == '.'): continue
     title = note[:note.index('.')]
     f = open(os.path.join(PROJECTS_DIRECTORY, note))
     if title in existing_titles: continue
     text = f.read()
     cursor.execute("INSERT INTO projects (title, text)\
-                      VALUES (%s, %s)", (title, text))
+                        VALUES (%s, %s)", (title, text))