lib/git_topic/commands/edit.rb in git_topic-0.3.3 vs lib/git_topic/commands/edit.rb in git_topic-0.4.0

- old
+ new

@@ -8,9 +8,13 @@ @topic_name = topic_name end def execute system("git branch --edit-description #{@topic_name}") + true + rescue e + puts e.message + true end end end end