From a8db9fa3dd1d8a3f2bbb2cc808b8909c91cb48ee Mon Sep 17 00:00:00 2001 From: Marius Kintel Date: Thu, 3 Nov 2011 19:38:57 +0100 Subject: Bugfix: import module toString() output was not parsable diff --git a/src/import.cc b/src/import.cc index d86a60d..8a3b0a4 100644 --- a/src/import.cc +++ b/src/import.cc @@ -236,7 +236,7 @@ std::string ImportNode::toString() const stream << "(file = \"" << this->filename << "\", " "cache = \"" << std::hex << (int)st.st_mtime << "." << (int)st.st_size << "\", " "layer = \"" << this->layername << "\", " - "origin = [ " << std::dec << this->origin_x << " " << this->origin_y << " ], " + "origin = [" << std::dec << this->origin_x << ", " << this->origin_y << "], " "scale = " << this->scale << ", " "convexity = " << this->convexity << ", " "$fn = " << this->fn << ", $fa = " << this->fa << ", $fs = " << this->fs << ")"; -- cgit v0.10.1