Enumerate habits in list
subcommand.
This commit is contained in:
parent
6961e4e3f3
commit
b5f4c3bb13
@ -88,9 +88,9 @@ impl HabitMgr
|
|||||||
pub fn list(&mut self, all:bool, verbose:bool)
|
pub fn list(&mut self, all:bool, verbose:bool)
|
||||||
{
|
{
|
||||||
self.import_habits();
|
self.import_habits();
|
||||||
for i in &self.habits
|
for (i, habit) in self.habits.iter().enumerate()
|
||||||
{
|
{
|
||||||
println!("{}", i.get_name());
|
println!("{}\t{}", i, habit.get_name());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user