diff --git a/text_interface/addstock.py b/text_interface/addstock.py
index c414aac..63527b8 100644
--- a/text_interface/addstock.py
+++ b/text_interface/addstock.py
@@ -92,8 +92,8 @@ much money you're due in credits for the purchase when prompted.\n'''
 
     def perform_transaction(self):
         print 'Did you pay a different price?'
-        if self.confirm('>', default=True):
-            price = self.input_int()
+        if self.confirm('>', default=False):
+            price = self.input_int('How much did you pay?', default=self.price)
             if price > self.price:
                 print 'Illegal action, total can not be higher than your total.'
             else:
diff --git a/text_interface/miscmenus.py b/text_interface/miscmenus.py
index 5bcf8a4..f5b1512 100644
--- a/text_interface/miscmenus.py
+++ b/text_interface/miscmenus.py
@@ -34,7 +34,7 @@ class TransferMenu(Menu):
             print 'Transfered %d kr from %s to %s' % (amount, user1, user2)
             print 'User %s\'s credit is now %d kr' % (user1, user1.credit)
             print 'User %s\'s credit is now %d kr' % (user2, user2.credit)
-            print 'Comment: $s' % comment
+            print 'Comment: %s' % comment
         except sqlalchemy.exc.SQLAlchemyError, e:
             print 'Could not perform transfer: %s' % e
             # self.pause()
diff --git a/text_interface/printermenu.py b/text_interface/printermenu.py
index 5aa31c4..f21c22d 100644
--- a/text_interface/printermenu.py
+++ b/text_interface/printermenu.py
@@ -18,7 +18,7 @@ Put it up somewhere in the vicinity.
     def _execute(self):
         self.print_header()
 
-        thing = self.input_thing('Prodct/User> ')
+        thing = self.input_thing('Product/User> ')
 
         if isinstance(thing, Product):
             if re.match(r"^[0-9]{13}$", thing.bar_code):