Change dirs declaration to avoid false positives from pychecker
authorGuido Günther <agx@sigxcpu.org>
Mon, 27 Dec 2010 22:32:49 +0000 (23:32 +0100)
committerGuido Günther <agx@sigxcpu.org>
Mon, 27 Dec 2010 23:15:13 +0000 (00:15 +0100)
See #608153

git-import-dsc
git-import-dscs

index 9c96f02..ee7a72b 100755 (executable)
@@ -145,7 +145,7 @@ def move_tag_stamp(repo, format, version):
 
 
 def main(argv):
-    dirs = {'top': os.path.abspath(os.curdir)}
+    dirs = dict(top=os.path.abspath(os.curdir))
     needs_repo = False
     ret = 0
     skipped = False
index 418e136..9f43563 100755 (executable)
@@ -69,7 +69,7 @@ or
 
 
 def main(argv):
-    dirs = {'top': os.path.abspath(os.curdir)}
+    dirs = dict(top=os.path.abspath(os.curdir))
     dscs = []
     ret = 0
     verbose = False