• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

An ADHD-friendly regular task tracker


Commit MetaInfo

Revisão178bc8d9ef6d59d3e2b0970d44f731f22ad55667 (tree)
Hora2024-01-13 12:37:05
AutorCorbin <cds@corb...>
CommiterCorbin

Mensagem de Log

Apparently this is tuple-like, not dict-like?

Doesn't match the upstream documentation, but whatever.

Mudança Sumário

Diff

--- a/every.py
+++ b/every.py
@@ -44,7 +44,7 @@ order by updated_at + consequences_after_s
4444 @click.argument("wheel")
4545 def show(wheel):
4646 for row in c.execute(show_query, (wheel,)):
47- print("Task:", row["description"], "(" + row["label"] + ")")
47+ print("Task:", row[1], "(" + row[0] + ")")
4848
4949 @cli.command()
5050 @click.argument("wheel")