]> code.communitydata.science - taguette_google_sheet_integration.git/commitdiff
fixed typos and errors
authorBenjamin Mako Hill <mako@atdot.cc>
Wed, 8 Dec 2021 05:56:45 +0000 (14:56 +0900)
committerBenjamin Mako Hill <mako@atdot.cc>
Wed, 8 Dec 2021 05:56:45 +0000 (14:56 +0900)
- two typos with importing code
- a few documentation typos

README.md
taguette-export_tags_to_csv.py
taguette-update_tags_from_sheet.py

index 4974249d7b388b6fbd33eda17ecd2952d587ba0a..aff084c61203ced8271b1d80e84a44296a66e2ef 100644 (file)
--- a/README.md
+++ b/README.md
@@ -13,7 +13,7 @@ git update-index --assume-unchanged .taguette_gdocs
 I also create a directory called `taguette_backups` like:
 
 ```
-mkdir db_backups
+mkdir taguette_backups
 ```
 
 ## Step 1: Backing things up
@@ -28,7 +28,7 @@ cp "taguette_backups/$BACKUP_FILE" ./taguette-working.sqlite3
 ```
 
 The first line shuts down Taguette. The second line just creates the backup
-file name. The third and fourt lines will create a new backup file and copy the
+file name. The third and fourth lines will create a new backup file and copy the
 backup file into the `./taguette-working.sqlite3`.
 
 ### Step 2a: Import from Google Sheets into the database
index 2085e47a94280e1951b793f45848c39c82ba0af6..7ba5a9127722b84572f32e97727638b5fda1ed0a 100755 (executable)
@@ -2,7 +2,7 @@
 
 import re
 import sqlite3
-from configparser ConfigParser
+from configparser import ConfigParser
 
 config = ConfigParser()
 config.read('.taguette_gdocs')
index 5c529917f6d37c031452bcad587cee013bba7e4e..9a19b40afc35503904ab2a1461e3f8691705ce56 100755 (executable)
@@ -3,7 +3,7 @@
 import requests
 from csv import DictReader
 import sqlite3
-from configparser ConfigParser
+from configparser import ConfigParser
 
 config = ConfigParser()
 config.read('.taguette_gdocs')

Community Data Science Collective || Want to submit a patch?