diff options
| author | 2012-01-13 10:58:51 +0100 | |
|---|---|---|
| committer | 2012-01-13 10:58:51 +0100 | |
| commit | cda057e979cbdc8022687e1810b876b371c8c11f (patch) | |
| tree | e31fd827931fc85465b4cee3d19d82d35a905c39 /module/utils | |
| parent | added setup.py, dropped GUI (diff) | |
| download | pyload-cda057e979cbdc8022687e1810b876b371c8c11f.tar.xz | |
fix info page, removed icons
Diffstat (limited to 'module/utils')
| -rw-r--r-- | module/utils/__init__.py | 10 | 
1 files changed, 1 insertions, 9 deletions
| diff --git a/module/utils/__init__.py b/module/utils/__init__.py index 3b0fb673a..b68928f04 100644 --- a/module/utils/__init__.py +++ b/module/utils/__init__.py @@ -66,12 +66,6 @@ def formatSize(size):  def formatSpeed(speed):      return formatSize(speed) + "/s" - -def freeSpace(folder): -    print "Deprecated freeSpace" -    return free_space(folder) - -  def uniqify(seq): #by Dave Kirby      """ removes duplicates from list, preserve order """      seen = set() @@ -192,6 +186,4 @@ def html_unescape(text):      return re.sub("&#?\w+;", fixup, text)  if __name__ == "__main__": -    print freeSpace(".") - -    print remove_chars("ab'cdgdsf''ds'", "'ghd")
\ No newline at end of file +    print remove_chars("ab'cdgdsf''ds'", "'ghd") | 
