Commit 582e74df authored by Dan Pascu's avatar Dan Pascu

Removed no longer used class

parent dfd60bb2
......@@ -3524,15 +3524,6 @@ class FileSizeFormatter(object):
return "%d bytes" % size
class UniqueFilenameGenerator(object):
@classmethod
def generate(cls, name):
yield name
prefix, extension = os.path.splitext(name)
for x in count(1):
yield "%s-%d%s" % (prefix, x, extension)
class BlinkFileTransfer(object):
implements(IObserver)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment