From: Peter Rabbitson Date: Sat, 28 Apr 2012 02:09:52 +0000 (+0200) Subject: Fix silly syntax error, introduced in 0c04c5a22 X-Git-Tag: v0.11011~16 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=53d5396046cc601d477f014eef2dcfd21a47a735;p=dbsrgits%2FSQL-Translator.git Fix silly syntax error, introduced in 0c04c5a22 --- diff --git a/Changes b/Changes index 9edefbd..9fbda65 100644 --- a/Changes +++ b/Changes @@ -50,6 +50,7 @@ environment config snippets (RT#70786) * Fix assembly of Table objects with numbered columns being added out of order (RT#74771) (based on patch from Jonathan Otsuka) +* Fix syntax error in SQL::Translator::Producer::Latex (RT#74953) * Deprecate SQL::Translator::Schema::Graph and the as_graph() schema method * Bump minimum supported perl version to 5.8.1 (mostly due to Moo) diff --git a/lib/SQL/Translator/Producer/Latex.pm b/lib/SQL/Translator/Producer/Latex.pm index 95d2831..f196ecd 100644 --- a/lib/SQL/Translator/Producer/Latex.pm +++ b/lib/SQL/Translator/Producer/Latex.pm @@ -39,7 +39,6 @@ use warnings; our @EXPORT_OK; our $VERSION = '1.59'; -$DEBUG = 0 unless defined $DEBUG; use SQL::Translator::Utils 'debug';