/gpump/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/gpump/trunk

« back to all changes in this revision

Viewing changes to src/settings_data.js

  • Committer: Gustav Hartvigsson
  • Date: 2015-06-05 20:39:26 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20150605203926-0bpnc3uohkpw9eqx
* Woops

Show diffs side-by-side

added added

removed removed

Lines of Context:
114
114
      print (JSON.stringify (this._settings, null, 2).toString () );
115
115
      
116
116
      // Check if the folder exists, and if it does not exist, create it.
117
 
      let folder_path = "" + GLib.get_user_config_dir () +
118
 
                                          "/gpump/"
 
117
      let folder_path = "" +
 
118
                        GLib.get_user_config_dir () +
 
119
                        "/gpump/";
119
120
      let folder = Gio.File.new_for_path (folder_path);
120
121
      if (!GLib.file_test (folder_path, GLib.FileTest.EXISTS)) {
121
122
        folder.make_directory (null);