aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rwxr-xr-xgist2
1 files changed, 1 insertions, 1 deletions
diff --git a/gist b/gist
index c7bfb93..0065ef0 100755
--- a/gist
+++ b/gist
@@ -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=" ")