Commit 56caa838 authored by Antoine Millet's avatar Antoine Millet
Browse files

Fixed logging.

parent d818c39c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -99,7 +99,7 @@ class CCConf(object):
        '''

        filename = os.path.join(self._path, '%s.json' % login)
        logging.debug('Writing configuration %s:' % (filename, conf))
        logging.debug('Writing configuration %s: %s' % (filename, conf))
        if os.path.isfile(filename) ^ create:
            json.dump(conf, open(filename, 'w'))
        else: