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