diff options
| -rwxr-xr-x | gist | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -368,7 +368,7 @@ for gist in raw: | |||
| 368 | print(gist["html_url"], end=" ") | 368 | print(gist["html_url"], end=" ") |
| 369 | print(gist["public"], end=" ") | 369 | print(gist["public"], end=" ") |
| 370 | print(",".join(file["raw_url"] for file in gist["files"].values()), end=" ") | 370 | print(",".join(file["raw_url"] for file in gist["files"].values()), end=" ") |
| 371 | print(",".join(file["filename"] + "@" + str(file["language"]).replace(" ", "-") for file in gist["files"].values()), end=" ") | 371 | print(",".join(file["filename"].replace(" ", "-") + "@" + str(file["language"]).replace(" ", "-") for file in gist["files"].values()), end=" ") |
| 372 | print(len(gist["files"]), end=" ") | 372 | print(len(gist["files"]), end=" ") |
| 373 | print(gist["comments"], end=" ") | 373 | print(gist["comments"], end=" ") |
| 374 | print(gist["owner"]["login"], end=" ") | 374 | print(gist["owner"]["login"], end=" ") |