Skip to content

Commit

Permalink
Fixed last commit's syntax error, issue #128
Browse files Browse the repository at this point in the history
  • Loading branch information
NoxArt committed Dec 13, 2013
1 parent f5c5e71 commit f5fe90c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib2/ftplib.py
Original file line number Diff line number Diff line change
Expand Up @@ -597,7 +597,7 @@ def close(self):
import lib2.ssl as ssl
sslImported = True
except ImportError:
print "SSL module import failed"
print("SSL module import failed")

if sslImported:
class FTP_TLS(FTP):
Expand Down
2 changes: 1 addition & 1 deletion lib3/ftplib.py
Original file line number Diff line number Diff line change
Expand Up @@ -643,7 +643,7 @@ def close(self):
import FTPSync.lib3.ssl as ssl
sslImported = True
except ImportError:
print "SSL module import failed"
print("SSL module import failed")

if sslImported:
class FTP_TLS(FTP):
Expand Down

0 comments on commit f5fe90c

Please sign in to comment.