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