Browse Source

string error fix

master
mb@mb 6 years ago
parent
commit
b3540df778
  1. 2
      streambot.py

2
streambot.py

@ -72,7 +72,7 @@ class ArchivistBot(ClientXMPP):
filename = os.path.basename(msg['oob']['url'])
targetDir = self.datadir
if not os.path.exists(targetDir):
os.mkdir( targetDir, 0755 )
os.mkdir( targetDir, '0755' )
targetFile = os.path.join(targetDir, filename)

Loading…
Cancel
Save