diff options
author | lloyd <[email protected]> | 2006-08-23 06:11:55 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2006-08-23 06:11:55 +0000 |
commit | 8cd2c9a4b9cf69a97e758d1e6416d2efbbf7028a (patch) | |
tree | e5bc06312aea5fd8dcf1fce9258df85d825fc3f7 /misc/python | |
parent | 6d828328c5bec27be00fe6dc869af1771e3cb286 (diff) |
Remove a semicolon that didn't need to be there
Diffstat (limited to 'misc/python')
-rw-r--r-- | misc/python/botan/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/python/botan/__init__.py b/misc/python/botan/__init__.py index 02565099c..569360ffe 100644 --- a/misc/python/botan/__init__.py +++ b/misc/python/botan/__init__.py @@ -13,7 +13,7 @@ def Filter(name, key = None, iv = None, dir = None): return make_filter(name) def Pipe(*filters): - pipe = PipeObj(); + pipe = PipeObj() for filter in filters: if filter: pipe.append(filter) |