mirror of
https://github.com/GAM-team/GAM.git
synced 2026-07-04 12:51:36 +00:00
Fix f-string typo
This commit is contained in:
@@ -13,7 +13,7 @@ See [Downloads-Installs](https://github.com/taers232c/GAMADV-XTD3/wiki/Downloads
|
|||||||
### 6.80.06
|
### 6.80.06
|
||||||
|
|
||||||
Added option `tdreturnidonly [<Boolean>]` to `<ToDriveAttribute>` that when true (the default), causes GAM to display
|
Added option `tdreturnidonly [<Boolean>]` to `<ToDriveAttribute>` that when true (the default), causes GAM to display
|
||||||
only the uploaded file ID to stdout. This can be captured and used in subsequent commands, `tdfileid <DriveFileID>` that will update the same file.
|
only the uploaded file ID to stdout. This can be captured and used in subsequent commands, `tdfileid <DriveFileID>` that will update the same file.
|
||||||
|
|
||||||
### 6.80.05
|
### 6.80.05
|
||||||
|
|
||||||
|
|||||||
@@ -239,9 +239,11 @@ If `tdfileid <DriveFileID>` is not specified, a new file is created.
|
|||||||
* `tdcellwrap clip|overflow|wrap` - The Spreadsheet cell wrapping strategy.
|
* `tdcellwrap clip|overflow|wrap` - The Spreadsheet cell wrapping strategy.
|
||||||
* `tdcellnumberformat text|number` - The Spreadsheet number format.
|
* `tdcellnumberformat text|number` - The Spreadsheet number format.
|
||||||
|
|
||||||
## Report action
|
## Report action, capture file ID
|
||||||
* `tdreturnidonly` - If False, a message is written to stdout with the uploaded file URL; if True, only the uploaded file ID is written to stdout
|
* `tdreturnidonly` - If False, a message is written to stdout with the uploaded file URL; if True, only the uploaded file ID is written to stdout
|
||||||
|
|
||||||
|
The ID can be captured and used in subsequent commands, `tdfileid <DriveFileID>` that will update the same file.
|
||||||
|
|
||||||
## Open browser and send email
|
## Open browser and send email
|
||||||
* `tdnobrowser` - If False, a browser is opened to view the file uploaded to Google Drive; if not specified, the `todrive_nobrowser` value from gam.cfg is used. If True, no browser is opened.
|
* `tdnobrowser` - If False, a browser is opened to view the file uploaded to Google Drive; if not specified, the `todrive_nobrowser` value from gam.cfg is used. If True, no browser is opened.
|
||||||
* `tdnoemail` - If False, an email is sent to `tduser` informing them of name and URL of the uploaded file; if not specified, the `todrive_noemail` value from gam.cfg is used. If True, no email is sent to `tduser`.
|
* `tdnoemail` - If False, an email is sent to `tduser` informing them of name and URL of the uploaded file; if not specified, the `todrive_noemail` value from gam.cfg is used. If True, no email is sent to `tduser`.
|
||||||
|
|||||||
@@ -8781,7 +8781,7 @@ class CSVPrintFile():
|
|||||||
printKeyValueList([msg_txt])
|
printKeyValueList([msg_txt])
|
||||||
else:
|
else:
|
||||||
if self.todrive['fileId']:
|
if self.todrive['fileId']:
|
||||||
writeStdout(f'{self.todrive['fileId']}\n')
|
writeStdout(f'{self.todrive["fileId"]}\n')
|
||||||
else:
|
else:
|
||||||
writeStdout(f'{spreadsheetId}\n')
|
writeStdout(f'{spreadsheetId}\n')
|
||||||
if not self.todrive['subject']:
|
if not self.todrive['subject']:
|
||||||
|
|||||||
Reference in New Issue
Block a user