Improve tracking of segments and segment utilization.
[cumulus.git] / python / cumulus / config.py
index 62225bd..cf721bf 100644 (file)
@@ -1,7 +1,6 @@
-# Cumulus: Smart Filesystem Backup to Dumb Servers
-#
-# Copyright (C) 2012  Google Inc.
-# Written by Michael Vrable <mvrable@cs.ucsd.edu>
+# Cumulus: Efficient Filesystem Backup to the Cloud
+# Copyright (C) 2012 The Cumulus Developers
+# See the AUTHORS file for a list of contributors.
 #
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -52,7 +51,6 @@ def _build_retention_engine(spec):
             seconds = int(m.group(1)) * _TIME_UNITS[m.group(2)]
             period = period + datetime.timedelta(seconds=seconds)
             intervalspec = m.group(3)
-        print classname, period
         policy.add_policy(classname, period)
     return policy