瀏覽代碼

float->int fix; colorize branches in pull

tags/v0.1^2
Ben Kurtovic 12 年之前
父節點
當前提交
21983438b3
共有 1 個檔案被更改,包括 3 行新增3 行删除
  1. +3
    -3
      earwigbot/commands/git.py

+ 3
- 3
earwigbot/commands/git.py 查看文件

@@ -95,7 +95,7 @@ class Command(BaseCommand):
def get_time_since(self, date):
diff = time.mktime(time.gmtime()) - date
if diff < 60:
return "{0} seconds".format(diff)
return "{0} seconds".format(int(diff))
if diff < 60 * 60:
return "{0} minutes".format(int(diff / 60))
if diff < 60 * 60 * 24:
@@ -194,8 +194,8 @@ class Command(BaseCommand):

if updated:
update = ", ".join([info.ref.remote_head for info in updated])
msg = "done; updates to {0} (from {1}).".format(update, remote.url)
self.reply(self.data, msg)
msg = "done; updates to \x0302{0}\x0301 (from {1})."
self.reply(self.data, msg.format(update, remote.url))
else:
self.reply(self.data, "done; no new changes.")



Loading…
取消
儲存