Commit 1fc3565c56091ad1893f04789ccb5325925d573c

Fixed

Signed-off-by: David A. Cuadrado <krawek@gmail.com>

Commit diff

lib/gitorious/commands/record.rb

 
2222
2323 quit = false
2424 modified = false
25 if not options[:all] and not changeset["modified"].empty?
26 changeset["modified"].uniq!
27 changeset["modified"].each { |v|
25 modified_files = changeset["modified"]
26 if not options[:all] and modified_files and not modified_files.empty?
27 modified_files.uniq!
28 modified_files.each { |v|
2829 info "File: #{v}"
2930 $stdout.puts git.diff({:color => true}, v)
3031 $stdout.puts ""
toggle raw diff