[Pykafe-commits] SF.net SVN: pykafe: [113] trunk/pykafe
Status: Pre-Alpha
Brought to you by:
jnmbk
From: <jn...@us...> - 2007-06-10 19:45:50
|
Revision: 113 http://pykafe.svn.sourceforge.net/pykafe/?rev=113&view=rev Author: jnmbk Date: 2007-06-10 12:45:52 -0700 (Sun, 10 Jun 2007) Log Message: ----------- forgot to delete TODO tag Modified Paths: -------------- trunk/pykafe/client/session.py trunk/pykafe/server/session.py Modified: trunk/pykafe/client/session.py =================================================================== --- trunk/pykafe/client/session.py 2007-06-10 19:25:44 UTC (rev 112) +++ trunk/pykafe/client/session.py 2007-06-10 19:45:52 UTC (rev 113) @@ -34,7 +34,6 @@ if time/60 < int(config.price_fixedpriceminutes): price = float(config.price_fixedprice) else: - #TODO: round the price using price_rounding price = float(config.price_onehourprice)/3600 * time return int(price/config.price_rounding)*config.price_rounding Modified: trunk/pykafe/server/session.py =================================================================== --- trunk/pykafe/server/session.py 2007-06-10 19:25:44 UTC (rev 112) +++ trunk/pykafe/server/session.py 2007-06-10 19:45:52 UTC (rev 113) @@ -34,7 +34,6 @@ if time/60 < int(config.price_fixedpriceminutes): price = float(config.price_fixedprice) else: - #TODO: round the price using price_rounding price = float(config.price_onehourprice)/3600 * time return int(price/config.price_rounding)*config.price_rounding This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |