]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/blobdiff - src/allmydata/web/common.py
misc mutable-type fixes:
[tahoe-lafs/tahoe-lafs.git] / src / allmydata / web / common.py
index 9bfed072c8a70bb96a50b6818fdf9ea566aeb392..13385c5f66bcb5743a45f7aa37dabc0c096872a1 100644 (file)
@@ -56,6 +56,11 @@ def get_mutable_type(file_format): # accepts result of get_format()
     elif file_format == "MDMF":
         return MDMF_VERSION
     else:
+        # this is also used to identify which formats are mutable. Use
+        #  if get_mutable_type(file_format) is not None:
+        #      do_mutable()
+        #  else:
+        #      do_immutable()
         return None