Skip to content

Instantly share code, notes, and snippets.

@sotarok
Created July 13, 2011 15:27
Show Gist options
  • Save sotarok/1080523 to your computer and use it in GitHub Desktop.
Save sotarok/1080523 to your computer and use it in GitHub Desktop.
diff --git a/src/Git/Daily/Command/Release.php b/src/Git/Daily/Command/Release.php
index 0f9cf47..de7e070 100644
--- a/src/Git/Daily/Command/Release.php
+++ b/src/Git/Daily/Command/Release.php
@@ -539,9 +539,9 @@ class Git_Daily_Command_Release
self::outLn("Author list:");
foreach ($author_list as $author => $id_list) {
- self::outLn("= $author");
+ self::outLn("\t$author:");
foreach ($id_list as $id) {
- $url = sprintf($this->config['logurl'], $id);
+ $url = sprintf("\t{$this->config['logurl']}", $id);
self::outLn($url);
}
self::outLn("");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment