summaryrefslogtreecommitdiff
path: root/rsa/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'rsa/__init__.py')
-rwxr-xr-xrsa/__init__.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/rsa/__init__.py b/rsa/__init__.py
index a1bacd6..754356e 100755
--- a/rsa/__init__.py
+++ b/rsa/__init__.py
@@ -420,10 +420,8 @@ def encode64chops(chops):
for value in chops:
chips.append(int2str64(value))
- encoded = ""
-
- for string in chips:
- encoded = encoded + string + ',' #delimit chops with comma
+ #delimit chops with comma
+ encoded = ','.join(chips)
return encoded