diff --git a/sheetsync/Dockerfile b/sheetsync/Dockerfile index 31648ad..12e06f5 100644 --- a/sheetsync/Dockerfile +++ b/sheetsync/Dockerfile @@ -13,4 +13,4 @@ RUN pip install /tmp/common && rm -r /tmp/common COPY sheetsync /tmp/sheetsync RUN pip install /tmp/sheetsync && rm -r /tmp/sheetsync -ENTRYPOINT ["python2", "-m", "sheetsync", "--base-dir", "/mnt"] +ENTRYPOINT ["python2", "-m", "sheetsync"] diff --git a/sheetsync/setup.py b/sheetsync/setup.py index b9d139a..32933cc 100644 --- a/sheetsync/setup.py +++ b/sheetsync/setup.py @@ -11,6 +11,7 @@ setup( "psycogreen", "psycopg2", "python-dateutil", + "requests", "wubloader-common", ], ) diff --git a/sheetsync/sheetsync/main.py b/sheetsync/sheetsync/main.py index 733d100..1553f7b 100644 --- a/sheetsync/sheetsync/main.py +++ b/sheetsync/sheetsync/main.py @@ -229,7 +229,7 @@ class SheetSync(object): "list of key=value pairs, or a URI like:\n" "\tpostgresql://USER:PASSWORD@HOST/DBNAME?KEY=VALUE" ) -@argh.arg('sheets-cred-file', help= +@argh.arg('sheets-creds-file', help= "sheets_creds_file should be a json file containing keys " "'client_id', 'client_secret' and 'refresh_token'." )