summary refs log tree commit diff
path: root/synapse/config
diff options
context:
space:
mode:
authorMark Haines <mark.haines@matrix.org>2015-04-30 04:26:29 +0100
committerMark Haines <mark.haines@matrix.org>2015-04-30 04:26:29 +0100
commit6b69ddd17a9fe75544ce32b402042f2d50826874 (patch)
treec8fbfa365ece78aeb557e7a501ec168e6d720f33 /synapse/config
parentManually generate the default config yaml, remove most of the commandline arg... (diff)
downloadsynapse-6b69ddd17a9fe75544ce32b402042f2d50826874.tar.xz
remove duplicate parse_size method
Diffstat (limited to 'synapse/config')
-rw-r--r--synapse/config/repository.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/synapse/config/repository.py b/synapse/config/repository.py

index bf727285d7..adaf4e4bb2 100644 --- a/synapse/config/repository.py +++ b/synapse/config/repository.py
@@ -22,15 +22,6 @@ class ContentRepositoryConfig(Config): self.max_image_pixels = self.parse_size(config["max_image_pixels"]) self.media_store_path = self.ensure_directory(config["media_store_path"]) - def parse_size(self, string): - sizes = {"K": 1024, "M": 1024 * 1024} - size = 1 - suffix = string[-1] - if suffix in sizes: - string = string[:-1] - size = sizes[suffix] - return int(string) * size - def default_config(self, config_dir_path, server_name): media_store = self.default_path("media_store") return """