Skip to content

Commit

Permalink
Fixed ST3 issue with commands on non-managed folders
Browse files Browse the repository at this point in the history
  • Loading branch information
NoxArt committed Jul 31, 2014
1 parent dcd8ef9 commit 455686a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FTPSync.py
Expand Up @@ -1136,7 +1136,7 @@ def __init__(self, file_path, config_file_path):
self.worker = None

def getIdentification(self):
return str(self.__class__.__name__) + " [" + self.file_path + "]"
return str(self.__class__.__name__) + " [" + str(self.file_path) + "]"

def setWorker(self, worker):
self.worker = worker
Expand Down

0 comments on commit 455686a

Please sign in to comment.