浏览代码

fix twisted output

Michael 11 年之前
父节点
当前提交
9d026566b2
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      examples/latest_change.py

+ 1 - 1
examples/latest_change.py

@@ -17,5 +17,5 @@ try:
 except StopIteration:
     print("No file %s anywhere in history." % sys.argv[1])
 else:
-    print("%s was last changed at %s by %s (commit %s)" % (
+    print("%s was last changed by %s at %s (commit %s)" % (
         sys.argv[1], c.author, time.ctime(c.author_time), c.id))