Browse Source

Decreased merge threshold.

Lily Carpenter 11 years ago
parent
commit
05d6d77001
1 changed files with 1 additions and 1 deletions
  1. 1 1
      budget.py

+ 1 - 1
budget.py

@@ -136,7 +136,7 @@ class PayPeriod:
136 136
         money_left_next = next_period.money_left
137 137
         print("Money After Bills + Expenses Next: " + str(money_left_next.quantize(TWOPLACES)))
138 138
 
139
-        if money_left_next <= 0:
139
+        if money_left_next <= 200:
140 140
             print("Not enough money left next paycheck!! Expenses being rolled together!")
141 141
             self.expenses += next_period.expenses
142 142
             self.calculate_budget()